• I find quite annoying that in Riba Lite the text is grey instead of black. Is it possibile to change the text colour for the entire website?

    Also: the words containing links are black. I’d like to make them blue and underlined, which is the universally recognized style for words with links. Any idea on how to do this for my whole website?

    Thank you so much!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @riccardocav,

    Please add this code in Appearance > Customize > Additional CSS:

    body main * {
    	color: black !important;
    }
    body main a, body footer a {
    	color: blue !important;
    	text-decoration: underline;
    }

    Warmly,
    Mihaela

    • This reply was modified 4 years, 1 month ago by Miha.
    Thread Starter RiccardoCav

    (@riccardocav)

    Thank you, I previewed this and it works BUT…
    it also changes the colour of the titles of the articles on my homepage: instead of white, they become blue.
    How could I apply the code you provided me only to texts inside posts and exclude articles titles, category links and other linked elements on the website?

    Thanks!

    Miha

    (@mplusb)

    Sure!
    Please replace the one I initially sent with this one:

    .post-content a {
    	color: blue;
    	text-decoration: underline;
    }

    Warmly,
    Mihaela

    • This reply was modified 4 years ago by Miha. Reason: typo
    Thread Starter RiccardoCav

    (@riccardocav)

    Thank you! This works but I’d also like to make the text black.
    What css code should I add?

    Miha

    (@mplusb)

    Please use this code:

     body main * {
    	color: black !important;
    }
    • This reply was modified 4 years ago by Miha.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change text colour and add underline to words containing links’ is closed to new replies.