How can I introduce white space between text elements on Debut?

Hey all! How can I add some small white space between “learn more” and “size” ? https://revelationusa.co/

Hi @revelationusa

Add below CSS just after in theme.liquid


You can ask more in the same thread if you want or tag me if need specific CSS.

Thank you! that worked. One last question. Do you know how I can make the announcement text smaller?

Hi @revelationusa

Add below CSS in between

which I provided above.

.announcement-bar__message {
	font-size: 12px !important;
	padding-top: 10px;
	padding-bottom: 10px;
}

Here, you can try changing these 12px to 10px or whatever font size you want and same for top and bottom padding.