Page 2 of 2

Re: Background Images

Posted: Sun May 20, 2007 5:00 pm
by KO
You were ver close :D
Locate

div#pagewrapper {
  border: 1px solid black;
  margin: 0 auto;    /* this centers wrapper */
  max-width: 80em; /* IE wont understand these, so we will use javascript magick */
  min-width: 60em;
  background: #color url(http://tinaturner.us.to/Untitled-1.gif) no-repeat center; /* edit this for your bg color and image */
  color: black;
}

on your stylesheets and remove #color so it comes:

div#pagewrapper {
  border: 1px solid black;
  margin: 0 auto;    /* this centers wrapper */
  max-width: 80em; /* IE wont understand these, so we will use javascript magick */
  min-width: 60em;
  background: url(http://tinaturner.us.to/Untitled-1.gif) no-repeat center; /* edit this for your bg color and image */
  color: black;
}

The problem was wrong syntax in you style so browsers ignored that line. With #color Nullig ment that you replace #color with actual color code like #ffffff or something like that.

br, K

Re: Background Images

Posted: Sun May 20, 2007 5:19 pm
by tinafan
Ok, it works now.. Thanks for your help!  :)

Re: Background Images

Posted: Thu May 24, 2007 5:40 pm
by tinafan
Ok.. So how would you make it be able to repeat, because like this image here is clear down the page: http://tinaturner.us.to/index.php?page= ... seven-tour

Re: Background Images

Posted: Thu May 24, 2007 6:44 pm
by Nullig
Change the no-repeat to repeat-y.

Nullig