Visibility Hidden with Passenger Theme
-
Hello,
I would like to hide the entry-header, so I entered :
main-content .entry-header {
visibility: hidden;
}but it shows me “wrong input string “hidden”.
Do you know the correct input please ?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
visibility: hiddenshould be valid CSS, but from your message, it looks like you’re missing the full stop beforemain-content..main-content .entry-header { visibility: hidden; }By the way, using that CSS will still leave the space of the header instead of completely removing it. If you’re wanting to completely hide it, you’d probably be more interested in this CSS.
.main-content .entry-header { display: none; }That would hide the banner with the title completely instead of leaving a rather large space. For example, the lighter cream bit with the arrows and the title “Week 50: The Snowy Peaks” on this post. https://passengerdemo.wordpress.com/2014/02/25/yorkshire-by-nature/
Let us know if that works. :)
- The topic ‘Visibility Hidden with Passenger Theme’ is closed to new replies.