How can I adjust the Turbo theme announcement bar size?

I have a new free shipping announcement and the promo bar is a little too tall. When I don’t have the text in the announcement the bar is properly sized (maybe slightly large). Anyone know how to change the size of that? Also, while we’re at it? Is there anyway to make the annoucment bar/promo bar text wrap on a mobile? It cuts off on mobile.

@Hi @tealadies ,

After checking your site, I see that there are 2 bars is the top-bar and promo-banner

You can try to separate those two parts with the following code
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css or styles.css

Step 3: Insert the below code at the bottom of the file → Save

.top-bar {
 margin-top: 10px !important
}

Hope this can help you

Kind regards,
HDL-Shin

Thank you - that leaves a white space between the promo bar and the top bar so I need to figure out how to get rid of that. Any thoughts? Also - do you happen to have a suggestion for making that promo bar wrap on mobile?

I guess I can make the top bar white for now to make it look like there is no space between the two.

Hi @tealadies ,
Please delete the old code I just sent you, you can replace with this new code it will have the right color for you

.promo-banner {
    background-color: #f47d31d4 !important;
}

@media (max-width: 767px) {
  .promo-banner__content p {
     width: 100%;
  }
  .promo-banner .promo-banner__content {
     padding-left: 0 !important;
     padding-right: 24%;
  }
}

Result:

Result mobile:

I can’t seem to get it to wrap on mobile even after making that change. I’ve tried private browsing and a new browser but I’m not seeing it wrap like your screenshot.

Hi @tealadies ,

Pls try again with this code

@media only screen and (max-width: 767px) {
  .promo-banner__content p {
     width: 100% !important;
  }
  .promo-banner .promo-banner__content {
     padding-left: 0 !important;
     padding-right: 24% !important;
  }
}

The promo-banner still isn’t wrapping on mobile. Thank you for your help with this - I really appreciate it.

Hi @tealadies ,
Let find this code in your file css and try insert my code inside it :

.promo-banner__content p {
     width: 100% !important;
  }
  .promo-banner .promo-banner__content {
     padding-left: 0 !important;
     padding-right: 24% !important;
  }

Hope it work

no luck i’m afraid.