How can I change the font size in Prestige theme's announcement bar?

Hello everyone,

Is it possible to change the size of the font in the announcement bar?

Many thanks in advance

https://techtron-online.myshopify.com/

crudah

1 Like
p.AnnouncementBar__Content.Heading a {
    font-size: 14px !important;
}

Add this code in the bottom of the theme.scss or theme.css file,
@Multibrands
Change the Size according to your need,
Thank you

Hi @Multibrands ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
.AnnouncementBar__Content a {
    font-size: 18px;
}

NOTE: You can change the value (18) to the value you want

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Add the below code to theme.css

p.AnnouncementBar__Content.Heading a { font-size: YOURSIZE.px !important; }