Quote:
Originally Posted by Melodym
Can I stack 2 smaller ads, say 340 x 60 on the right side in the header?
I saw it on another site but couldn't figure out how they did it.
I tried putting stuff in the template ad_global_header1 and ad_global_header2 but I'm not sure how to align them so they are on the right and not running into the top login links.
|
ok, make two divs say
<div align="center" ></div> in the first ad block and another div say
<div align="center"></div>, but need to add class and style for the following reasons:
1- to know what each div goes.
2- to add border style to know exactly the edges of the div
so the codes will be like this (ad_global_header1):
Code:
<div align="center" class="ad1" style="border:1px solid #FF0000"></div>
And for code 2 (ad_global_header2):
Code:
<div align="center" class="ad2" style="border:1px solid #0000FF"></div>
I believe you know that you need to add the banner position code between the div tag, right!! wither it is vbseo or vb
https://vborg.vbsupport.ru/showthread.php?t=272725
so in this case you will have two divs with two different borders; red and blue, respectively.
if you want to add style to that, you have two options:
1- to add more styling to style in the div,
2- or remove style from the div and write your own style based on the classes in each div.
cheers