• 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;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter roderashe

    (@roderashe)

    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

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘can’t change bg color in Seashore theme’ is closed to new replies.