CSS to hide Go blog post elements.
body .go_post_author{ display: none; }
body .go_post_date{ display: none; }
body .go_post_categories{ display: none; }
To make sure these elements re-appear in Go edit mode, use the CSS below.
body.goUI .go_post_author{ display: inline; }
body.goUI .go_post_date{ display: inline-block; }
body.goUI .go_post_categories{ display: block; }
0 Comments