• I have a website using Sela but unfortunately it is very hard to read. I want to change the main text colour to black (it is currently grey) and the links and widget from pink to another colour more in keeping with my site. However I can’t find anywhere in the style sheets to change the colours. Can you help please? Thanks.

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

Viewing 1 replies (of 1 total)
  • Hi, you can use the following in Appearance->Customize->Additional CSS

    .entry-content {
    	color: black;
    }
    
    .social-links ul a:before {
    	background-color: red;
    }

    Not sure if the first one will target all of the text that you’re looking to change. If not, let me know what it isn’t targeting and I should be able to get it updated.

    For the second one, you can use either a color name or a hex code to determine the color:

    https://htmlcolorcodes.com/

    Just pick the color you want, then look for the numbers/letters with the # in front of it and add that in

    background-color: #e3e3e3;

Viewing 1 replies (of 1 total)
  • The topic ‘Changing font colours on Sela’ is closed to new replies.