XF 1.4 Add .jpg banner above top breadcrumb or somewhere else.

Arnuxx

Member
Hi,
I trying to add a .jpg banner ,but something isn't working.
I'm completely blank in HTML,so..
Here is what I'v done
<xen:hook name="ad_above_top_breadcrumb" />
<div style="float: center;"></div>
<A HREF="Destination url"><IMG SRC="ads/image.gif" ALT="Home"></A>
Where I should put banners in server? like /forum/ads/image.gif ?
Can anyone please help me,detailed as possible?
Thanks
 
it should be something like:
HTML:
<div style="display: block; margin: 0 auto; text-align: center;">
    <a href="{url}"><img src="ads/image.gif" alt="Home" /></a>
</div>

EDIT: And yes, if your forum is located in /forum then you should put the gif file in /forum/ads/image.gif
 
Top Bottom