Show entry-title only for Search Results
-
I’m using the Big Brother theme, and I’ve hidden the titles so that the user doesn’t see a huge “Home”, “About”, etc. at the top of the screen (they can see where they are with the breadcrumbs) I used the following CSS to do that:
.entry-title { display: none; }The problem is that this hides the entry-title for the Search Results page, so that the user cannot drill down into the results. So my question is:
How can I show the .entry-title ONLY for the Search Results page?
Thanks.
The blog I need help with is: (visible only to logged in users)
-
Hi, add the following at the bottom of your CSS to bring the titles back on the search results pages.
.search .entry-title { display: block; } -
-
- The topic ‘Show entry-title only for Search Results’ is closed to new replies.