raw html text & hover color

Posted in: Newspaper
Post count: 43

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.

Post count: 20688

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

Post count: 43

Thanks, we will keep the performance and cascade color effect under observation for now.

We are trying to change the font color of all the raw html links in this section to light grey (newspaper default) with hover color to blue.

Post count: 28

I am also looking for instructions on changing the hover color. Thank you.

Post count: 20688

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;
}

Post count: 43

Thanks for the support, it works !

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.