Hello! I’m newbie.
I’m looking to drop the tail of the letter ‘g’ in my logo below the bottom border of the header. I’m assuming this will take some CSS?

Thanks in advance!
Hello! I’m newbie.
I’m looking to drop the tail of the letter ‘g’ in my logo below the bottom border of the header. I’m assuming this will take some CSS?

Thanks in advance!
Hello @seeyoutom
This is Amelia at PageFly - Shopify Advanced Page Builder app.
Could you please provide me with the URL so I can check it for you?
thank you for help
https://lselhwvjcf3x4ij0-60502671460.shopifypreview.com
Hello @seeyoutom
This is Amelia at PageFly - Shopify Advanced Page Builder app.
You can try the following steps I have provided to help you solve the problem you are facing:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file base.css
Step 3: Add code
#headerContainer > .py-2{
overflow: visible !important;
}
#headerContainer > .py-2 > .flex{
height: 50px;
padding-top: 5px;
}
Hoping my solution helps you solve your problem.
Best regards,
Amelia | PageFly
Thank you. It works well on desktop but not very well on mobile. Can you help me adjust it for mobile as well?
Hello @seeyoutom
You can try the following steps I have provided to help you solve the problem you are facing:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file base.css
Step 3: Add code
#headerContainer > .py-2{
overflow: visible !important;
}
#headerContainer > .py-2 > .flex{
height: 50px;
padding-top: 5px;
}
@media only screen and (max-width: 768px) {
#headerContainer > .py-2 > .flex{
height: 30px;
}
}
Amazing!!
Thank you so much