For easier banner management you guys can use the following Mod together with this one:
https://vborg.vbsupport.ru/showthrea...mages&page=137
This will allow you to set up to 10 different banners per side. To do this you do the following:
Open up your header template and do the following small edit if you already installed this Mod:
Find this:
Code:
<div class="left-banner"></div>
<div class="right-banner"></div>
Replace with this:
Code:
<div class="left-banner"><!--@vbbanners:0@--></div>
<div class="right-banner"><!--@vbbanners:2@--></div>
Note, there are 10 positions for the banners starting with 0 through 9, the 2 positions I used here are position 0 for the left side banners and position 2 for the right side banners. You can use any position you want for yours, just replace the red highlighted numbers with your positions.
This also gives you a better rotation of the your banners than using the left_banner_rotate.php and right_banner_rotate.php files, so you can remove those from your additional.css.
Change the code in additional.css to the following:
Code:
div.left-banner {
display:block;
height:435px;
width:140px;
position:fixed;
left:5px;
top:50px;
}
div.right-banner {
display:block;
height:435px;
width:140px;
position:fixed;
right:5px;
top:50px;
}