The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Using a background image in the Page Background
In the Admin CP under the Style Manager -- Skin you want to edit --> Main CSS, I'm trying to use an image for the Page Background.
I added the following CSS to the Extra CSS Attributes but haven't noticed any changes. Code:
{ background-image: url('http://www.projectfanboy.com/vb/images/skins/superman_bg.jpg'); background-attachment: fixed } |
#2
|
||||
|
||||
That is not valid CSS. You have opening and closing brackets, but you do not specify any tags to apply it to. You are most likely looking for this:
Code:
body { background-image: url('http://www.projectfanboy.com/vb/images/skins/superman_bg.jpg'); background-attachment: fixed; } |
#3
|
||||
|
||||
Actually I was just inserting the code in the little box next to the Standard CSS Attributes under Page Background but that didn't work either.
Then I noticed that the css selector was called .page so I tried adding the following code to the Additional CSS Options all the way at the bottom of the screen but it didn't work either. Code:
.page { background-image: url('http://www.projectfanboy.com/vb/images/skins/superman_bg.jpg'); background-attachment: fixed; } |
#4
|
||||
|
||||
Quote:
Try it like this. Code:
.page { background-image: url('http://www.projectfanboy.com/images/skins/superman_bg.jpg'); background-attachment: fixed; } |
#5
|
||||
|
||||
Wow, I'm an idiot. LOL, Thanks.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|