Okay you are very close and you are on right track. You do not have to do any extra code to "activate" some css outside of your linked stylesheet.
if you would like to link in your stylesheet at the top in the header section you would put your
Code:
<link type="text/css" rel="stylesheet" href="blah.css" />
Then you would just make sure that you put the appropriate tags in the HTML structuring, which it looks like you know how to do. I have a feeling that where you are getting into trouble is calling the image that you want repeated. If you want to do it inline then you need to put the
Code:
<img href="blah.jpg" width="bah" height="bah" style="background-repeat:repeat-x" />
but if you would prefer to have it in your linked style sheet then you would need to make sure that you either have an ID or a CLASS somewhere you can reference it. In your example you would call it like so in your linked stylesheet
Code:
.certain-class-defined-in-my-css-file img {background-repeat:repeat-x;}
[b]NOTE: "class" is supposed the designer wants to use the codes multiple times on one page. if this is the only place on your page that you want your background image, you should use an "id" which the only thing that would change in your code is replacing the DOT with a POUND(#) sign . I hope this helps you and if not you can give me a shout on my messengers if you have any of them. Good Luck
Bookmarks