roderashe
Member
Posted 4 years ago #
Hi!
I'm trying to change the bg color. It is currently an image. How do I change the code below in my style.css file? Sorry - I'm a total noob. Thanks!
body {
margin: 0;
padding: 0;
background:#eee url(img/bodybg.gif) fixed;
font-family: Verdana,Tahoma, Arial, Serif;
line-height: 1.5em;
font-size: 10px; /* IE5 Win */
voice-family: "\"}\"";
voice-family: inherit;
font-size: 10px; /* easy scaling */
font-size: 0.76em;
color: #333;
}
Change this:
background:#eee url(img/bodybg.gif) fixed;
to this:
background: #eee;
You might want to Google "css tutorial" - there are a million of them out there.
roderashe
Member
Posted 4 years ago #
RoseCitySister,
Thanks very much. That worked great. Time to bone up on CSS now! Thanks, again.
Yes there are a million CSS tutorials out there. Unfortunately 95% of them teach you the wrong thing. If you want to learn CSS the right way check out HTML Dog Patrick Griffiths knows what he's doing