My colour scheme has gone wonky,
I had a website built for me which looked smashing but when it was uploaded, the yellow in the colour scheme disappeared.
Anywhere, I've figured out the issue is in the CSS. So, here is some of the CSS code as it is.
#nav-toggle { background: #777; color: #fff; }
.nav-overlay { background: #777; }
.nav-overlay a, .nav-overlay a:visited { color: #fff;}
.nav-overlay a:hover, .overlay a:focus { color: #03a454; }
#header-valuation { background: #fff; }
#footer { background: #777; color: #fff; }
#footer a, #footer a:visited { color: #fff; }
So, the footer and the navigation button (menu button) are grey.
When I change the style.css document on my computer to:
#nav-toggle { background: #03a454; color: #fff; }
.nav-overlay { background: #777; }
.nav-overlay a, .nav-overlay a:visited { color: #fff;}
.nav-overlay a:hover, .overlay a:focus { color: #03a454; }
#header-valuation { background: #fff; }
#footer { background: #03a454; color: #fff; }
#footer a, #footer a:visited { color: #fff; }
and refresh the .html file opened from my desktop (not uploaded to the host), the nav bar and footer turn green which is smashing. That's what I want.
However, when I change the same lines on the website itself, there's absolutely no change.