How do I change the color of specific text in Dawn theme?

Solved

How do I change the color of specific text in Dawn theme?

Argi
Tourist
5 0 0

How do I change the color of specific text in Dawn Theme

 

For example Change just the NEW IN text into Red

Screenshot 2023-03-25 173521.png

Accepted Solution (1)

PageFly-Victor
Shopify Partner
7865 1786 3115

This is an accepted solution.

Hi @Argi ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
ul.list-menu.list-menu--inline > li:first-child > header-menu>details>summary>span {
    color: red;
}
details[open]>.header__menu-item {
    text-decoration: red;
}
</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

View solution in original post

Replies 4 (4)

PageFly-Victor
Shopify Partner
7865 1786 3115

Hi @Argi ,

Could you please share URL and your store password if it enabled? So that we can help you.
Thank you.

Argi
Tourist
5 0 0

Yeah my URL is https://ferreira-4539.myshopify.com/?_ab=0&_fd=0&_sc=1 and the pass is soflal

PageFly-Victor
Shopify Partner
7865 1786 3115

This is an accepted solution.

Hi @Argi ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
ul.list-menu.list-menu--inline > li:first-child > header-menu>details>summary>span {
    color: red;
}
details[open]>.header__menu-item {
    text-decoration: red;
}
</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

Argi
Tourist
5 0 0

Thanks for the help!