My announcement bar somehow cant increase in size

Hello,

I recently added a simple announcement bar to my site and the actual font and overall padding is way too small.

I went to my theme settings and changed up the font a bit, but when I wanted to adjust the size, it didnt update at all.

Can anyone help me with making the font and overall bar bigger?

Thanks!

url:jasaoslaj.com

P.S. Mobile is my main priority as its primarily optimized for that.

1 Like

Hello @jasa11

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > styles.scss.css and paste this at the bottom of the file:
.promo_banner p {
font-weight: 700;
font-style: normal;
font-size: 20px;
}
.promo_banner-show .promo_banner {
min-height: 55px;
}
.promo_banner .promo_banner-close {
margin: 10px;
}

1 Like