|
BeTheBall -> RE: Background stationary moving text (1/29/2004 13:15:12)
|
My bad. I should have published. Here is a better approach. Open your local copy of your web. Then open the _themes folder. In that folder should be a folder with the same name as your theme. Within that folder should be a .css file with a name comprised of part of your theme name and probably 1111. Open that file with NotePad. Towards the end, you will see the attribute for your background. It will begin like this: body { background-image: url('YourBackGroundImage.gif'); font-family: Arial, Helvetica } Put a copy of your image in the same folder as the .css file and, assuming your image is clouds.jpg, then change the above code to: body { background-image: url('clouds.jpg'); background-repeat: no-repeat; background-attachment: fixed font-family: Arial, Helvetica } Note, your fonts following the font-family tag may be different so change the ones I have posted here to those you are currently using. The above fix did not work in Preview mode, but worked on the published site. Good luck!
|
|
|
|