PDA

View Full Version : Footer Image



swisscotton
Wed 30th Apr '08, 7:17am
How do I put an image as the footer background? (If possible)
And is there any kind of document telling me what each item is? For example I want to replace the Link bar at the top with an image but I don't know what VB refers that as (if that makes any sense).

vbStartup
Wed 30th Apr '08, 7:40am
There's an article at vBulletin.org that tells which templates control what.

http://www.vbulletin.org/forum/showthread.php?t=172770

The vBulletin manual also has a color reference guide showing which classes control what

http://www.vbulletin.com/docs/html/color_maps_intro

For adding a background image to the footer, you should just be able to wrap the footer template in a div and add a background to that.

swisscotton
Wed 30th Apr '08, 8:04am
Style manager > edit template > footer > edit (add div)


<div class=“ifooter”></div>
(wrapped around all the coding in the template box for the footer)

Style manager > Main CSS (scrolled to the bottom and added)


.ifooter {background-image: url(/images/misc/footer2.jpg); background-repeat: no-repeat;}

It hasn't worked. But its really confusing to know where to put things.

vbStartup
Wed 30th Apr '08, 3:32pm
Link?