How can I make text bold in an announcement banner?

https://empiricalwater.com/

At the very top, “Concentrates ship free…”

How do I make that bold?

Thanks!

@empiricalarby Please add the below line of CSS code at the end of your base.css file.

.announcement-bar__message{
font-weight:bold;
}
2 Likes

Thank you, an issue is that this applies to both my banners. how do I apply it only to the top one? Thanks

@empiricalarby remove the above CSS and replace it with below:

.announcement-bar:first-child .announcement-bar__message{font-weight:bold;}
1 Like