New Shopify Certification now available: Liquid Storefronts for Theme Developers

How to make a part of my announcement bar a different color?

Chicha7272
Excursionist
45 0 6

Hey, I have a question. I want to make the second part of my announcement bar white (see the images below)

Here's what I have:

Chicha7272_1-1699760339879.png


Here's what I want:

Chicha7272_2-1699760445669.png

My question is, how do I do it?

My store URL is: https://trivlen.com/

 

 

Replies 3 (3)
Abdosamer
Shopify Partner
443 67 63

Hi @Chicha7272 , First you need to change the html structure of the announcement text, the html should look like this: 

<span>Black Friday sale! <span class="discount">Get up to 50% off!</span></span>

then we will use css to style this part :

.discount{
  color : #fff;
}

 

Email : abdelrahamansamer71@gmail.com
Buy me a Coffee
Chat on WhatsApp
Chicha7272
Excursionist
45 0 6

Hey, thanks a lot man. May I ask you to also show me where exactly I have to put these pieces of code? Cause I haven't figured it out yet

Chicha7272
Excursionist
45 0 6

Hey @Abdosamer, please check out the reply above.