Jump to content

cant seem to get my background image to repeat


runnerjp

Recommended Posts

hey guys ny background image will not repeat itself and i do not knwo why :S

 

 

hopefully the image wqill appear behind the text repeated

 

<h1 align="center"><u><div id="lineacross"> <img align="left" src="../images/background123.jpg" /> </div> Welcome Back To RunnersElite!</u> </h1> 

   

then ithis is my layout.css file that the div refears to

div#lineacross {
background:url('http://www.runnerselite.com/images/background123.jpg') repeat-x;
background-repeat:repeat-x
}

dude your missing a ;

that may be the problem

and you've got an extra repeat-x in ther too

so the code would go like this

div#lineacross {
background:url('http://www.runnerselite.com/images/background123.jpg');
background-repeat:repeat-x;
}

notice the new ; after repeat-x;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.