PDA

View Full Version : adding div contrainer


BobbyBig
08-20-2010, 01:17 AM
Hello,

i want to add a div container around the body content of every vbulletin page, anyone got an idea how to do that ?

standard vbulletin structur:

<body>
<div class="above_body"></div>
<div class="body_wrapper"></div>
<div class="below_body"></div>
</body>



I want it to be like that:

<body>
<div class="my_new_div_container">
<div class="above_body"></div>
<div class="body_wrapper"></div>
<div class="below_body"></div>
</div>
</body>


help is very appreciated :)

cheers

BobbyBig
08-22-2010, 09:32 PM
Hello, any help ?

ArtAttack
08-22-2010, 09:52 PM
You can find the start of body_wrapper in the navbar template and the end of it in the footer template.

Just add <div class="above_body"> above <div class="body_wrapper"> and add a </div> below </div> <!-- closing div for body_wrapper -->

BobbyBig
08-22-2010, 11:39 PM
thx, but not all pages use this templates.
There are many templates which use their own <body> tags. Just search for "<body" in the templates :(