Background image doesn't show up in Safari!

Hey!

I have a problem. I have made a band webapage, but when I use Safari, the background doesn’t show up. Instead of background image, i see just a white background. Background image shows up in all the others browsers (IE, FF, Opera, etc…).

link on the site: www.ardodsg.pri.ee/band/

It shows up for me… tested in FF3 IE7 and Safari.

http://www.ardodsg.pri.ee/band/images/bg2.png

Did you by chance fix it yourself (if so it usually a good idea to edit your post saying its been fixed)?

your css says:


body {
	background-image:url('images/bg2.png');
	background-repeat:repeat-y;
	background-position:center;
	background-color:#000000;
	color:#636464;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	margin:0;
	padding:0;
}
body {
	background-image:url('images/bg2.png');
	background-repeat:repeat-y;
	background-position:center;
	background-color:#000000;
	color:#636464;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	margin:0;
	padding:0;
}

2 body tags could be conflicting

its ok on all browsers

[quote=simplistik;2354443]your css says:


body {
    background-image:url('images/bg2.png');
    background-repeat:repeat-y;
    background-position:center;
    background-color:#000000;
    color:#636464;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    margin:0;
    padding:0;
}
body {
    background-image:url('images/bg2.png');
    background-repeat:repeat-y;
    background-position:center;
    background-color:#000000;
    color:#636464;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    margin:0;
    padding:0;
}

2 body tags could be conflicting[/quote]

I used to have one body tag. Then it didn’t work. I duplicated it… and it worked. Kind of weird solution, but as long as it works i don’t mind to use it.