Archived topic
How do I style a border around the header section?
7 replies · Started by Barney on December 11, 2020
Viewing posts 1–8 of 8
I know this one is odd, but I'd like to put a color border around the header.
Hi there,
try adding this CSS:
.site-header {
border: 2px solid #f00;
}
No change. Any other suggestions?
Try this:
.page-hero {
border: 2px solid #f00;
}
That put a border around the page hero image, but not around the header above with site title and menu.
Oops - try this one:
#mobile-header {
border: 2px solid #f00;
box-sizing: border-box;
}
That's it! Thank you, David.
You're welcome - sorry for the brain freezes there :)
This archived topic is closed to new replies.