Custom CSS, hide Page titles but show Post titles
-
Blog URL: http://www.libertychick.com , using PressRow theme with the Custom CSS upgrade.
With the help of aw1923 (thank you again!), I was finally able to change my blog pages to hide the page titles. Is there a way to keep the page titles hidden, but still allow the “Post” titles to display? This is the code I’m currently using to hide titles:
h2 { font-weight: normal; font-size: 2.0em; }
.post h2, .page h2 {display: none;}, .attachment h2 { color: #000; line-height: normal; padding-top: 10px; margin-bottom: 10px; }
The blog I need help with is: (visible only to logged in users)
-
yeah, you remove the .post h2 so it’ll just be .page h2 {display: none;}.
If that doesn’t work then add another element like .post h2 {display: show;}.HTH
- The topic ‘Custom CSS, hide Page titles but show Post titles’ is closed to new replies.