Edit - Background* title fail
Okay,
I have a small background image I want to tile across the background of a page.
I go to edit the CSS- currently I see: background: transparent
I want to use the image located in root/images/bg.jpg
What do i need to change the text to after "background:" to take the image I want and tile it as the bg.
Thanks
-edit
I found this: http://www.devx.com/tips/Tip/12957
But is there not someway to just edit the line in the style sheet which contains, "background:"
Okay,
I have a small background image I want to tile across the background of a page.
I go to edit the CSS- currently I see: background: transparent
I want to use the image located in root/images/bg.jpg
What do i need to change the text to after "background:" to take the image I want and tile it as the bg.
Thanks
-edit
I found this: http://www.devx.com/tips/Tip/12957
Code:
<HTML>
<HEAD>
<STYLE TYPE="text/css">
.vert {background-image: url(myImage.gif); background-repeat: repeat-y;}
.horiz {background-image: url(myImage.gif); background-repeat: repeat-x;}
.both {background-image: url(myImage.gif); background-repeat: repeat;}
</STYLE>
</HEAD>
<BODY CLASS = "vert">
</BODY>
</HTML>
But is there not someway to just edit the line in the style sheet which contains, "background:"