Archived topic
How to Add Bottom Border to Header on All Pages Except Homepage?
1 reply · Started by Thomas on May 31, 2018
Viewing posts 1–2 of 2
Im trying to add this css below the header. Basically a colored border below the header from the body content.
border-bottom-width: 5px;
border-bottom-style: solid;
border-bottom-color: #fbce2c;
I can add it to the site-header class however my homepage is a merged header custom page so it ruins the design.
Whats the best way to implement this?
Add this CSS:
body:not(.home) .site-header {
border-bottom: 5px solid #fbce2c;
}
This archived topic is closed to new replies.