On Nov 17, 2005, at 6:54 AM, Keith Fjellman wrote:
>  body {
> background: url("../images/webBG.gif");
> background-repeat: repeat-y;
> }

Try:

body {
        background-image: url(../images/webBG.gif);
        background-repeat: repeat-y;
}

I prefer shorthand:

body {
        background: #666 url(pathToImage) repeat-y scroll 0 0;
}

Hth,
Micky

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to