Remove Posted By/Posted on
-
Using TwentyEleven Theme.
Looking to remove the “Posted By” & “Posted On” info on just a few pages.Any CSS help would be appreciated.
already have the
.category .page-title {
display:none;
}solution but that obviously takes the mentioned info off of the site completely
Thanks
The blog I need help with is: (visible only to logged in users)
-
-
On just a few pages? As in specific posts?
To hide “Posted On” info on all pages, try this:
.entry-meta { display: none; }Then you can probably adjust the CSS to just apply to certain pages. To do it, look at the html page source for the pages where you want to hide the text, and find the body tag. Look at what classes are available and pick the one that applies just to that page or to the type of page where you want to hide text. For example, if you wanted to hide that text just on the home page, you would add “.home” to the front of the CSS block.
- The topic ‘Remove Posted By/Posted on’ is closed to new replies.