How to increase the announcement bar font size in Prestige?

Hi, Ive been trying different codes to increase announcement bar font size on Prestige with no success. Can you help me? Thank you so much!

hi @tjuliana

please share your web-site url and password,

thank you so much.

fourelementscandles.ca

pw: juju

thank you

hey , @tjuliana

i can solve this your problem.

u like this ?

thank you so much .

khilan

Thank you so much, a little bit smaller if possible. Thank you!

hi @tjuliana

can u please add me a staff member .

please my contact id :- khilan.mendapara1995@gmail.com

thank you so much ,

khilan

sorry, not sure i understand what you mean?

hey @tjuliana

please chage this file code .

and add to code { font-size : x-large; }

thank you so much

khilan

Thank you. Is this on theme.css?

hi @tjuliana

yes .

thank you

Hi Im sorry, Im not sure where to find it on css. I just searched for the variables but i couldnt find this piece. Could you be more specific? Thank you.

hi @tjuliana

please search this file in AnnouncementBar-Content.heading in theam.css

thank you so so much

khilan

Go to Online Store > Themes > Actions > Edit Code – on the theme that you want to edit. Open your Assets folder and open your theme.css file – then copy and paste this to the bottom:

.AnnouncementBar__Content {
    font-size: 24px;
}

Just change the pixel value to be whatever you want.

2 Likes

Thank you so much, this was much helpful @Ninthony

Should this work for mobile version @Ninthony ?

@media screen and (min-width: 641px) {
.AnnouncementBar__Content {
font-size: 12px;
}

Thank you!

Try max-width, not min-width and don’t forget the closing curly brace for the media query.

thank you it didnt work.

Any idea what i may be doing wrong? thank you so much

I’ll have to get back to you a little later, Im not at a computer at the moment so I cant check.

2 Likes

sounds good thank you so much

1 Like

Here you go, this is working if I paste it at the end of your theme.css file:

@media (max-width:767px){
  .AnnouncementBar__Content {
  font-size: 12px;
  }
}
2 Likes