PDA

View Full Version : Full width header and footer images - How?


SimonB
07-21-2012, 05:17 PM
Ok so I have two images, one of which is my logo, superimposed on a full width background image. The other is a full width footer.

How do I bring these two images into vbulletin?

I know how to modify the header and footer texts (assuming this text will be overlaid over the background image)

This is pretty much my last style question:erm:

--------------- Added 1342899213 at 1342899213 ---------------

Ok have the footer sorted (sort of but it's not the dimensions of the image)... getting there :)

SimonB
07-21-2012, 06:10 PM
Ok so I managed to get the footer partially right but I need the Powered by vBulletin text to live within the footer.

See attachment

peugeot405
07-21-2012, 06:24 PM
try changing the below body section.

look for:
<div class="below_body">

that section contains the time and the copyright part.

SimonB
07-21-2012, 07:56 PM
try changing the below body section.

look for:
<div class="below_body">

that section contains the time and the copyright part.

Thanks, that did the trick

peugeot405
07-21-2012, 08:00 PM
glad i could help.

SimonB
07-22-2012, 04:11 AM
Ok almost done, but how do I adjust the height of the header image?

peugeot405
07-22-2012, 06:19 AM
Ok almost done, but how do I adjust the height of the header image?

you need to adjust doc header height.

add this to additional css:

.doc_header {
height: 150px;
}

if i may make 2 suggestions:

change the logo so it has a transparant background instead of white
make the advanced search link center under the search input box like i suggested here (https://vborg.vbsupport.ru/showpost.php?p=2350220&postcount=4)

SimonB
07-22-2012, 06:34 AM
Thanks

Yeah the logo will change to transparent - just using that one as a placeholder.

Once I have all the placements right I will fine tune the details... like the background will change and become considerably lighter.

Thanks too, for the advanced search link tip ;)

you need to adjust doc header height.

add this to additional css:

.doc_header {
height: 150px;
}

if i may make 2 suggestions:

change the logo so it has a transparant background instead of white
make the advanced search link center under the search input box like i suggested here (https://vborg.vbsupport.ru/showpost.php?p=2350220&postcount=4)

peugeot405
07-22-2012, 06:40 AM
glad i could help.

SimonB
07-22-2012, 07:23 PM
Still not perfect - now I have an inconsistency between the logged in toplinks and than when logged out.

Logged In

https://vborg.vbsupport.ru/attachment.php?attachmentid=140004&stc=1&d=1342992127

Logged Out

https://vborg.vbsupport.ru/attachment.php?attachmentid=140005&stc=1&d=1342992128

peugeot405
07-22-2012, 07:31 PM
Still not perfect - now I have an inconsistency between the logged in toplinks and than when logged out.

Logged In

https://vborg.vbsupport.ru/attachment.php?attachmentid=140004&stc=1&d=1342992127

Logged Out

https://vborg.vbsupport.ru/attachment.php?attachmentid=140005&stc=1&d=1342992128

what do you mean with an inconsistency between the logged in toplinks and than when logged out SimonB?

SimonB
07-23-2012, 06:08 AM
It's a style inconsistency I am referring to

Links with white background (round corners) when logged out and links with transparent backgrounds (or white squared off backgrounds when hovered) when logged in.

I need to spend more time with the toplinks section. I have been fiddling with the stylevars but I'm thinking I'l again have to delve into some css.

peugeot405
07-23-2012, 10:52 AM
ok, and how do you want it to look? There's a lot of possibilities.

SimonB
07-23-2012, 12:13 PM
ok, and how do you want it to look? There's a lot of possibilities.

The logged in look must be the same as the not logged in look...

peugeot405
07-23-2012, 12:38 PM
ok add this to additional css:

.toplinks ul.isuser {
background: none repeat scroll 0 0 #FFFFFF;
border-radius: 0 0 5px 5px;
}

fr8dude
08-08-2012, 02:04 PM
I am new to vb and this tread has provided me with some info needed. However I have been unable to locate "additional css". Any help would be greatly appreciated.

peugeot405
08-08-2012, 02:40 PM
you go to admin cp then select style manager choose edit templates on the left then scroll down until you see css templates, click it to expand, then you'll see additional css.

fr8dude
08-18-2012, 09:54 PM
Thank you

peugeot405
08-20-2012, 08:23 PM
glad i could help out.