PDA

View Full Version : Need assistance with left side skyscraper ad


Sal Collaziano
03-24-2003, 04:40 AM
Hey all. I'm not sure where this should be posted. Sorry if it's in the wrong spot. But.. Does anyone have a left side skyscraper ad or ad cube going on their vB? I can get it to work fine for the forum listing page and the thread listing page. But, once you go into a thread, the skyscraper stays on the top left but then the posts are beneath it..

Can anyone help?

Thanks in advance...

Chris Gwynne
03-24-2003, 04:57 AM
Edit the header and footer template and you'd basically have two columns, if you're good with HTML. In one column you'd have the add, in the other the forum's HTML structure.

HEADER


<div align="center">
<center>
<table border="0" cellpadding="4" cellspacing="0" width="100%" height="100%">
<tr>
<td valign="top">AD CODE</td>
<td valign="top" width="100%">

You'd put that before the second table started in your Header Template.

FOOTER

</td>
</tr>
</table>
</center>
</div>


You'd put that just after the table finished in your footer template.

Obviously modify the variables such as the width, the alignments and so on to get the look right. :) Hope this helps.

Sal Collaziano
03-24-2003, 09:55 AM
Perfect! Thank you very much!!! :)

geovadim
04-08-2005, 09:54 AM
This was very helpful for me also. One more question. How can I add a banner on the rifgt site of the forum?

Dean C
04-08-2005, 11:11 AM
Instead of using this:


<div align="center">
<center>
<table border="0" cellpadding="4" cellspacing="0" width="100%" height="100%">
<tr>
<td valign="top">AD CODE</td>
<td valign="top" width="100%">


Use this:


<div align="center">
<center>
<table border="0" cellpadding="4" cellspacing="0" width="100%" height="100%">
<tr>
<td valign="top" width="100%">
<td valign="top">AD CODE</td>

geovadim
04-08-2005, 05:54 PM
The banner is now on the right side, but above all the forum...

Dean C
04-08-2005, 06:11 PM
Errr sorry this in your header:


<div align="center">
<center>
<table border="0" cellpadding="4" cellspacing="0" width="100%" height="100%">
<tr>
<td valign="top" width="100%">


And this in your footer:


</td>
<td valign="top">AD CODE</td>
</tr>
</table>
</center>
</div>