Forum Discussion
Warren_Brill
12 years agoBoss
All of the CSS in our skin is written in the following syntax:
#lia-body .lia-blog.BlogPage .lia-content li.blog-bio-blurb {
display: none;
}
... so I wasn't certain that a line that began without the hash mark would work.
The line above does not seem to affect display of the blog-bio-blurb.
- Warren_Brill12 years agoBoss
I have found the solution.
This CSS suppresses display of the author biography, just on the Blog Page:
#lia-body.BlogPage .lia-content .blog-bio-blurb {
display:none;
}