Hello!
I’m looking to drop the tail of the letter ‘g’ in my logo below the bottom border of the header. (That way, it’ll be correctly centered in the header. See below for what I’m trying to achieve.) I’m assuming this will take some CSS?
Website link: https://lselhwvjcf3x4ij0-60502671460.shopifypreview.com
Thanks in advance!
Julia
Hey @designbyjrs ,
You can add this to the Custom CSS in the Theme Customizer → Settings ,
div#headerContainer > div.py-2{
overflow: visible !important;
}
div#headerContainer > div.py-2 > div.flex{
height: 55px;
padding-top: 5px;
}
@media only screen and (max-width: 768px) {
div#headerContainer > div.py-2 > div.flex{
height: 35px;
padding-top: 5px;
}
}
One more thing I noticed is that when the Shop menu is open, the logo get’s cut off.
If you want to prevent that, add this additional CSS
.site-header__logo-link {
position: relative;
z-index: 2;
}
And it’ll look like this,
So as a whole, the CSS would be,
div#headerContainer > div.py-2{
overflow: visible !important;
}
div#headerContainer > div.py-2 > div.flex{
height: 55px;
padding-top: 5px;
}
.site-header__logo-link {
position: relative;
z-index: 2;
}
@media only screen and (max-width: 768px) {
div#headerContainer > div.py-2 > div.flex{
height: 35px;
padding-top: 5px;
}
}
Hi @,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly