Solved

Anyone know how to make announcement bar bigger? I am guessing I need some code for the style.css

Noblec
Shopify Partner
54 3 14
Accepted Solution (1)
Noblec
Shopify Partner
54 3 14

This is an accepted solution.

Hello, I was able to do it by using this piece of code in style.css turbo theme.

.header .promo-banner{
padding: 18px 0 !important;
}
 
@media only screen and (max-width: 749px){
#header .promo-banner{
padding: 14px 0 !important;
}
}

View solution in original post

Replies 2 (2)

JHKCreate
Shopify Expert
3571 639 916

Hi @Noblec 

Would you mind sharing your store's URL so we can assist on that?

Cheers!

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com
Noblec
Shopify Partner
54 3 14

This is an accepted solution.

Hello, I was able to do it by using this piece of code in style.css turbo theme.

.header .promo-banner{
padding: 18px 0 !important;
}
 
@media only screen and (max-width: 749px){
#header .promo-banner{
padding: 14px 0 !important;
}
}