Add text before compared pricing

Solved

Add text before compared pricing

Thetraveladdict
Excursionist
35 0 15

Hi All,

 

Ik hope you can help me. I want to add text before the compared pricing (and only when compared pricing is added). 

Text should be: Adviesprijs
Should be visible in Carousel, Collection page and Product page

Thetraveladdict_0-1747971631265.png

Store: 
https://thetraveladdict.nl/

Example product url:
https://thetraveladdict.nl/products/100000mah-wireless-power-bank-large-capacity-portable-6in1-charg...

 

Theme: Craft

Password: Thetraveladdict

 

 Thanks a lot!

 

Accepted Solution (1)
suyash1
Shopify Partner
11073 1364 1747

This is an accepted solution.

@Thetraveladdict replace above code with this one, adjust number 12 as per the need

 

.price__sale:before {
    content: "Adviesprijs";
    font-size: 12px;
}

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com

View solution in original post

Replies 4 (4)

suyash1
Shopify Partner
11073 1364 1747

@Thetraveladdict please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

.price__sale:before {
    content: "Adviesprijs";
}

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com
Thetraveladdict
Excursionist
35 0 15

@suyash1  Thanks, can we also make the size of Adviesprijs a little bit smaller? It's now very dominant 🙂

suyash1
Shopify Partner
11073 1364 1747

This is an accepted solution.

@Thetraveladdict replace above code with this one, adjust number 12 as per the need

 

.price__sale:before {
    content: "Adviesprijs";
    font-size: 12px;
}

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com
Thetraveladdict
Excursionist
35 0 15

it worked 🙂 Thanks!