Changing the color of specific words in a paragraph

Changing the color of specific words in a paragraph

jasa11
Explorer
87 0 11

Hey.

 

So as the title suggests, I want to make a few specific words red colored  in one of my paragraphs.

 

If anyone can provide me with some sort of javascript or css code, would be great!

 

I've attached the paragraph below but you can go to my website to see for yourself. The paragraph is located right at the start of the landing page.

 

website url: jasaoslaj.com

 

The words id like to appear in red are; ''INSPIRING'' , ''modernized'' , ''long-term'' , ''BUILD'' ,  ''KEY'' , ''TRUE'' , ''LAST''

 

Thanks!

 

text2.png

 

 

Replies 7 (7)

ZestardTech
Shopify Partner
6096 1091 1465

Hello @jasa11 

If you want to color only the word "LAST" in red within the given text, you can wrap the word "LAST" with a <span> element and apply the color property to that element. Here's how you can do it:

 

 

<p>Now if you're looking for something that will truly <span class="red-text">LAST</span> &amp; not waste your precious time, then stop waiting around and get to it.</p>

 

 

1. In your Shopify Admin go to online store > themes > actions > edit code

2. Find Asset > styles.scss.css and paste this at the bottom of the file:

 

 

.red-text {
    color: red;
}

 

 

ZestardTech_0-1690781025644.png

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
jasa11
Explorer
87 0 11

If I want to target multiple words, do I have to use this exact code except put different sentences in it?

ZestardTech
Shopify Partner
6096 1091 1465

Hello @jasa11 

yes use this exact code except put different sentences in it.

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
jasa11
Explorer
87 0 11

Great, now im just wondering how do I combine the 2 codes above. As I put them in seperately in the styles file, but my website got all messed up until I removed it again.

ZestardTech
Shopify Partner
6096 1091 1465

Hello @jasa11 

 

What code did you add in the style file ?

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
jasa11
Explorer
87 0 11

First the 2nd code, and then below the actual sentence.

ZestardTech
Shopify Partner
6096 1091 1465

Hello @jasa11 

 

First code edit in featured content section file And second code add in styles.scss.css  file.

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing