Dear all,
I am using Dawn 15.2.0 and would like to adjust the font size and weight of the text in just one of the announcement bars (I have two announcement bars, currently).
Best regards,
Dear all,
I am using Dawn 15.2.0 and would like to adjust the font size and weight of the text in just one of the announcement bars (I have two announcement bars, currently).
Best regards,
Hi @TGregs ,
Could you please share a screenshot and highlight the specific announcement bar you’d like to adjust? That way, I can give you a CSS snippet that you can simply copy and paste.
Best,
Felix
Hey! You can tweak the announcement bar text in Dawn using some quick CSS in your theme files.
To make the text bigger, try something like this:
.announcement-bar__message {
font-size: 18px;
}
You can tweak the “18px” up or down to match what you want.If you want it bold too, add:
.announcement-bar__message {
font-weight: bold;
}
That worked nicely for another user
You’ll find the right place to paste it under:
Online Store → Themes → Customize → Theme Settings → Custom CSS
or directly in base.css via Edit Code, depending on your theme versionstrong text
Thanks so much Amanda