My header style is “minimal”
In addition, I have the sticky header and the shrinking header.
Is there a setting where I can have it such that when a user scrolls down and the header shrinks to it’s smallest size, a small bottom border will appear kind of like the default header style?
there is a class for the shrinking header if shrinking process comes to its end: header-scrolled so:
.header-scrolled {
border-bottom: 2px solid #080;
}
and if you don’t have choosen the minimal with dropshadow. You can set it on the class too:
.header-scrolled {
border-bottom: 2px solid #090;
box-shadow: 0 2px 5px #bbb;
}