View Full Version : my css isnt working at all


Tinkerbell
07-17-2003, 01:04 AM
<html>
<head>
<title>
</title>
<style type="text/css">
body
{
background-image:
http://www.battle.net/war3/images/pandaren/geomancer.jpg;
background-repeat:
no-repeat;
background-position:
center center
}
</style>
</head>
<body>

is there anything wrong with this
the bg image doesnt show up

Cherchezlafemme
07-17-2003, 01:10 AM
<style type="text/css">
body
{
background-image: url(http://www.battle.net/war3/images/p.../geomancer.jpg);
background-repeat: no-repeat;
background-position: center center;
}
</style>


all you forgot was the () lol

try that code instead


BTW:

Welcome To The LEIA Forums Tinkerbell :waving:

Tinkerbell
07-17-2003, 01:19 AM
ok i added the () but i still dont get the image up at least..
im doing it on www.infiniteprofile.com
is that the problem?

lefty
07-17-2003, 02:31 AM
Try this... if it doesn't work, mind posting a link to your page?

<style type="text/css">
<!--
body
{
background-image:url(http://www.battle.net/war3/images/p.../geomancer.jpg);
background-repeat:no-repeat;
background-position:center center;
}
-->
</style>

(do be sure to edit your image name in there, the forum shortens it.)