Quote:
Originally Posted by vB Tree
Go to AdminCP > Styles & Templates > All Style Options
Near the bottom, there is a section titled "Additional CSS Definitions"
You can add any CSS to this area.
Hope this helps.
|
Actually if you are putting a fixed background on the entire site you need only put the background css in the top Page Body area box to the left. No need to create extra tags. divs etc.
Open your css of your style and scroll to where you see "Body (Customized in this Style)" it will be the first box that you see for the css definitions. Now in the box that says "Extra CSS Attributes" place the background code you want to use like this:
Code:
background-image: url(images/background.jpg);
background-attachment:fixed;
Be sure to change the images/background.jpg to your correct path where your image for your background was uploaded & give the correct file name for the background. You may have to use a full URL it would look something like this:
Code:
background-image: url(http://www.yoursite.com/images/background.jpg);
background-attachment:fixed;
just be sure that you use the proper pathway & file name and it should work just fine. Be sure to click the "save" button after making the edit.