place your code in either
"header" = below your vb forum
"footer" = above your vb forum.
I made a few styles, where the forum is fixed center
and i deleted the navbar, and created my own navigation on the site
using CSS, and a "absolute" position..
adding the code in footer after body tag ends.
reason i chose footer, is becourse if someone got small res, they cant see the menu.
but for a background i would def, choose header..
this is a small nav menu i placed "outside" forum
Code:
.menupos {
position:fixed;
left:0px;
top:250px;
}
.menuitem {
background-image:url('images/evibus/leftmenu.gif');
width:200px;
position:fixed;
left:0px;
top:260px;
repeat:vertical;
}
.menutext {
padding-left:10px;
}
Menupos = first topleft position for top img.
Menuitem = background for each menuentry
Menutext = tags format for text/links
Code i entered in footer at Line 0
Code:
<div class="menupos">
<img src="images/evibus/leftmenutop.gif" />
</div>
<div class="menupos menuitem" >
<ul>
<li class="menutext"> Test </li>
<li class="menutext"> Test </li>
<li class="menutext"> Test </li>
</ul>
</div>
Result in navigation outside forum border :
Attachment 115762