hi, when i add a hyperlink to dot points when writing blog posts, they dont change in colour to the blue like they usually do.
Store url: https://evolvedh2o.com/
Example blog post url: https://evolvedh2o.com/blogs/news/hydrogen-water-bottle-silicone-components
Example of the hyperlink changing to blue like it should
Example of the hyperlink colour remaining unchanged when in a dot point list
How do I fix this?
Kind Regards,
Jake
Hello @marlerjake ,
Follow these steps:
-
Go to Online Store β Theme β Edit code
-
Open your base.css file and paste the following code at the bottom:
.article-template__content li a {
color: #1a73e8 !important;
}
Problem solved donβt forget to Like it and Mark it as Solution!
If you need help with customization/code part you can contact me for services
You can find the email in the signature below.
Regards
Guleria
Hello @marlerjake
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
.rte a {
color: #1a73e8 !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @marlerjake
You can change it on your store by following this instruction:
-
Go to Shopify > Theme > Customize
-
Copy and paste this code on Theme settings > Custom CSS section
.article-template__content a {
color: #1A73E8 !important;
}
.article-template__content a:hover {
color: #1A73E8 !important;
}
Here is the result :
thank you, worked a charm
1 Like
thank you for taking the time to respond