Looking to remove the tagline from posts….
-
I have done it with pages using:
.page-id-1 .site-description {
display: none;
}but switching post for page doesn’t seem to work. Any thoughts?
The blog I need help with is: (visible only to logged in users)
-
If you wish to hide the site description from all single post pages, then we can use the single CSS class defined in the opening body tag for single post pages.
.single .site-description { display: none; } -
If you are wanting to hide it from only some posts, then you can use the unique postid CSS class from the opening body HTML tag. On your AAPCO page, look in the opening body tag in the source code and you will see this:
postid-202
- The topic ‘Looking to remove the tagline from posts….’ is closed to new replies.