How Do I Hide the Author Biography on a Blog Page or Blog Article Page?
I need to suppress display of the author biographies on blog pages - they tend to be short books. I have tried the following in the skin CSS:
#lia-body.BlogPage .lia-content .lia-blog-bio-blurb {
display:none;}
and
#lia-body.BlogPage .lia-content li.blog-bio-blurb {
display:none;}
Neither one suppresses the text component. I can verify the moniker "blog-bio-blurb" from the source code on a development server page:
<li class="blog-bio-blurb">
Sample Biography Text - Placed here for testing purposes.
</li>
The page shows "Sample Biography Text - Placed here for testing purposes." below my screen name.
"display:none;" is the standard CSS suppression source. Why does it not work here?