Quote:
Originally Posted by legiondadon
the issue i was having with this is when members had a zoomed in browser...the images wouldnt zoom with the rest of the forum and caused them to overlap over forum content for sum members...had to disable  although this is a great idea
|
Hey legion easy fix for that. Use the following in your additional.css instead:
Code:
div.left-banner {
display:block;
height:435px;
width:140px;
position:fixed;
left:5px;
top:50px;
z-index:-1000
}
div.right-banner {
display:block;
height:435px;
width:140px;
position:fixed;
right:5px;
top:50px;
z-index:-1000;
}
The z-index:-1000 will make the banners sit behind your forum's content when zoomed in.