thanks – that seems to create a nice thin line at bottom, though strangely logo still sits at the line/bottom
do you think if i added some kind of “bottom” to this code bit in custom CSS, it would do something?
/* for padding above logo */
#site-logo {
top: 5px;
}
#header.sticky #site-logo {
top: 5px;
}
or in the section that has code for reducing the size of logo when scrolling down?
/* for shrinking logo on scroll */
#header.sticky #site-logo a img {
max-width: 75%;
}
#site-logo a img {
transition: all ease-in-out 0.3s 0s;
}