/
Hide Blog Author
Hide Blog Author
This article explains the brief process of hiding the author on the blog posts. Some dealers may want to do this to hide the fact that all their articles are being published under the same username, or that some are being published by us.
To hide the blog author, all you need to do is add the following code to the CSS tab on the domain node (of the regular site, NOT in the blog settings!):
/*Remove Blog Author*/
#blog article .author {
display: none;
}
Usually this is placed at the very bottom of the stylesheet. You may need to add an !important after the none (but before the ; after none!) if this does not work.