Remove category title
-
I’m using the Sela theme with WordPress premium. I’d like to remove the grey category title that sits just above the posts, like this: http://eatcleantrainmean.co.uk/category/food-drink/
Not sure how to hide these using css editor. I added this but it’s not working:
/*
.cat-title { display: none; }
*Any help would be appreciated!!
The blog I need help with is: (visible only to logged in users)
-
I used the web inspector built into my browser to find the relevant CSS. If you are not familiar with the web inspector in your browser, take a look at our support page on How to Find Your Theme’s CSS where you will find some brief screencasts to get you started with it. I find it an invaluable tool when working with CSS.
The following would be the CSS to hide that page title on category/tag/archive pages.
.archive .page-header { display: none; }
- The topic ‘Remove category title’ is closed to new replies.