Hello,
The site I am using Weaver on is http://www.rubyharte.com/
I am attempting to hide the page and post titles using the Snippets as suggested:
Hide Page and/or Post Titles
If you don't want your page titles to show, you can use the following snippet:
.page .entry-title{display:none;}
You can do the same for posts with:
.post .entry-title{display:none;}in the advanced options head box between style :
I have put the above code into the Advanced options Head Section thus (with other code that works)
<!-- Add your own CSS snippets between the style tags. -->
<style type="text/css">
#access {-moz-border-radius: 7px; border-radius: 7px;
-webkit-border-radius: 7px;}
#access { text-align:center; }
#access ul{display:inline-block;}
#page .entry-title{display:none;}
#post .entry-title{display:none;}
#comments {display:none;}
</style>
The other codes are working as they should but not this one. Am I doing something wrong?
I very little experience with CSS so far please advise me how to proceed. Thank you