How can I change the announcement bar font size in my online store?

Is there any way, I can change the announcement bar font size? I have tried editing code theme.scss.liquid under Assets, but no change.

I tried adding:

.announcement-bar__message {
font-size: 28px;
}

My shop URL: ottoguntheronline.com

Hi @Henok1

I am not able to see any announcement bar on the desktop but still, you can add

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

this code. i have checked on other theme, it’s working

Hi,

Please add the below CSS at the end of your theme.scss.liquid file.

div.header-bar {
    font-size: 18px;
}
1 Like