zuki theme
-
hello:
I have three request:
1. looking for css code to hide titles of certain pages (ie: rsvp, about site)
2. looking for css code to hide comments/dates/authors under the “health and faith” (near bottom of front page) sections. I was able to use a code to hide it from all other postings..it just won’t remove it from those two sections for some reason.
3. looking to get rid of the “THIS ENTRY WAS POSTED IN: …..” tag that is showing up at the end of every published post…thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there!
You can hide the title of specific pages with a style that targets their individual page IDs
For example, to hide your RSVP title, you would use this:
.page-id-29 .entry-header { display: none; }You can add other pages using their IDs (How to find page IDs)
-
The post meta info (author, date, comments, etc. need to be targeted based on the part of the page they are in – otherwise they’ll hide dates and things in other places as well:
#front-content-two .entry-date, #front-content-two .entry-author, #front-content-two .entry-comments { display: none; } -
Another
display: nonewill do the trick here (or you can add it to the last one you set up!).meta-cats { display: none; } -
-
- The topic ‘zuki theme’ is closed to new replies.