I don’t have an online example unfortunately as I am working locally, but I can try to explain.
If I want to change the site description text colour from black to white, I open the Safari debugger and target the text. It shows up there under .site-description
, with the color
tag. Changing in browser works. In my CSS file my code reads:
.site-description {
color:#ffffff;
}
…with no success. I go back to the browser and debug, and it shows up under .site-description
with the colour set in the Customizer. Going through the debugger again to trace back where the colours are, they show as inline styles somewhere that is not in my theme file.
It seems confusing. Let me try and pose it differently. If you were looking to change the colours of say the site description, and the primary nav links, what would you be doing?