Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS external sheet issue and more.. Re: external sheet issue and more..

#78165
jamygolden
Member

1) If this is your internal stylesheet:

Code:
#container{ background:url(images/dots.png); background-repeat:repeat; background-position: 0 0; min-height:100%; margin:0 auto;width:1610px;}

Then your external (which is situated within a sub folder) should read

Code:
#container{ background:url(../images/dots.png); background-repeat:repeat; background-position: 0 0; min-height:100%; margin:0 auto;width:1610px;}

2) I didn’t see the dots.png in any browser. (I tried firefox, chrome and safari)

3) I would recommend that you validate your html properly before trying to work out IE quirks. http://validator.w3.org/