How can I increase the announcement bar font size on Sense 3?

Hey all,

I am having a hard time figuring out how to increase the font size of the text in the announcement bar on Sense 3. Right now it just looks comically small. Any advice on code to increase it?

My site is: https://micrologicals.myshopify.com/

And there is no password

Thanks!

Hi,

Add below css in base.css file

.announcement-bar__message {
    font-size: 20px !important;
}

Thanks

Hit Like and Accept as Solution

@Micrologicals Open the assets/base.css and paste below css at bottom.

.announcement-bar__message
{
font-size: 20px !important;
}

Thank you!!