Oh, thank you!
Another question: I can change the color of the menu bar now, but when I wanna use an expanding menu it is white colored. How can I change this color?
And by the way… I didn’t found how I can remove the page title. I found this thread: http://themeid.com/help/discussion/comment/2492. But that doesn’t work respectively the code is different. Is there a solution, too?
drop-down menu:
.menu li li {}
and change the background 🙂
Emil
Thanks! Great!
And my problem with the title?
All page titles:
.post-title {
display: none;
}
Emil
It works! But is it only possible for pages AND articles? Not separately for pages?
Hopefully one of my last questions….;-)
I don’t find the tag for the background-color of the pages. Could you help me again?
This one has no function:
body {
background:#B31D21;
}
Ok. I found a solution:
#wrapper { background-color: #B31D21; border:0; }
But this changes all wrapper, not individual pages or posts.
The title can be removed separately with that:
#post-51 h1 {display:none;}
51 is the ID of a page.
In the wrapper there are still the path and the link to home. How can I remove that?
.post-title #post-51 {
display: none;
}
I’m sorry, that doesn’t work.
This works:
#post-51 h1 {display:none;}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You missed out this bit;
.post-title
Does this code not work;
.post-title #post-51 {
display: none;
}
?
Again…
That doesn’t work:
.post-title #post-51 {
display: none;
}
This works:
#post-51 h1 {display:none;}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support