Forum Moderators: not2easy
Page 1:
A static background-no repeat that won't move when the page is scrolled. I defined an image as a background in CSS url(picture.jpg) or url(../images/pic.gif) but it does not work. No picture appears or an Error comes up that says:"can't find a valid editor for this file extension."
Page 2:
Table with content and its own background image with a static page background.
Same as above. Neither works.
Does anyone have a suggestion?
I tried what you did but at first nothing would appear untill I defined the background in 'page properties' first and then use the CSS editor to change the background features. Here is the CSS code that worked for me:
Step 1:
Page Properties > Background image > graphics/back3.gif
Step 2:
New Style Sheet >
body {
background-image: url(graphics/back3.gif);
background-attachment: fixed;
background-repeat: repeat-x;
background-position: left top;
background-color: #999999;
}
Step 3:
Voila!
~Shane