I'm trying to remove the words "Posts In", but keep cookware.
<header class="BlogList-filter">
Posts in Cookware
<header/> =0
I've tried a number of different solutions. Including:
$(".BlogList-filter").html("Cookware")
I don't like this because it doesn't change dynamically on other pages like "Bedding".
$(':contains("Posts In:")').each(function(){
$(this).html($(this).html().split("Posts In:").join(""));
});
This hides everything on the page.