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!
fourelementscandles.ca
pw: juju
thank you
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 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.
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.
sounds good thank you so much
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;
}
}


