Hello,
Is there a way to change raw html text (light grey) and hover (blue) colors through custom css code addition of the theme ? Check out latidune.com/deals section.
Also, while visiting the site link, the default font color (blue) of the theme flashes before reflecting the updated font color theme, we have not enabled any transition/load options and google pagespeed test scores are above 70.
Thanks.
Hi,
For me that page loads almost instantly, no flashing appears whatsoever. That flashing is caused by the way CSS works in cascade and will be noticeable in combination with a slow loading speed.
But that would not be the case here from what I can see. The website is fast.
If you could mention what exactly you want to change in that page and how, I will give you a solution.
Thanks
A code like this will work, it will change the color of the links in the raw HTML elements only in that page. You can change the colors as you wish
– https://www.screencast.com/t/3KqgmX5Ww
This code is specific to that page and will affect only links in the HTML content. Also if you want it to apply for all the raw HTML elements in the website remove the page ID class from the code
.page-id-86855 .vc_raw_html a {
color: lightgrey;
}
.page-id-86855 .vc_raw_html a:hover {
color: blue;
}