PDA

View Full Version : 2 pictures at headers with different links?


Problemsolver
03-28-2009, 05:48 PM
Hi.

Is it possible to have a header with the logo and then another picture (like a banner) with a separate link?

Was thinking of having a banner with the offer of the month.

Seven Skins
03-28-2009, 06:21 PM
yes it is possible.

<a href="http://www.sevenskins.com"><img src="banner.gif" width="100" height="100" alt="" /></a>

Edit the above code according to your banner size and link.

.

gsmph
03-30-2009, 01:46 AM
or you can do this side by side banner





<a href="http://www.your forumhere.com"><img src="banner_1.gif" width="100" height="100" alt="" /></a>
&nbsp;&nbsp;
<a href="http://www.your forumhere1.com"><img src="banner_2.gif" width="100" height="100" alt="" /></a>






or you can use iframe syntax like this one

you can adjust the width and hieght depends on what you need default is width 468 height 60




<center>
<iframe src ="http://yourforum/banner_1" frameborder=0 width=468 height=60 scrolling=no>
</iframe>
&nbsp;&nbsp;
<iframe src ="http://yourforum/banner_2" frameborder=0 width=468 height=60 scrolling=no>
</iframe>
</center>





br
gsmph