PDA

View Full Version : How to add banners?


boom
05-06-2006, 01:47 AM
How can I manage banners? How to add them?

eddy2099
05-06-2006, 04:18 AM
There is two steps to this.

1) Under Configuration, go to Banner Configuration and Enable it.

2) Once you do, you should see a 'manage banners' link listed under the left hand panel . You could then do a Create to add your banners

mtnrocker
05-11-2006, 02:13 AM
How can I place a banner at the top or the roght side instead of the bottom?

Nick Collins
05-11-2006, 05:42 AM
How can I place a banner at the top or the roght side instead of the bottom?
***open footer.tpl file***
***find the following code***
{if $banner && $config.banners}
<div style="text-align: center;">{$banner.image} ({$banner.url})</div>
{/if}
***move it to any place you want***
***save changes***

mtnrocker
05-12-2006, 08:44 AM
Thanks Nick.....IT WORKED!!! :good:

It created more questions though :lol:

• Is it possible to manage/display more than one banner at a time? (see red x's on screenshot) I would like to display 3 - 4 banners on the right side.

• Is it possible to link a banner to an outside website?

• How do I move a banner above the directory title?

http://www.wrightwood.biz/images/ScreenShot1.gif

Any ideas anyone?

Thanks

Skip Bertsch
05-30-2006, 06:17 PM
Just wondering.. did you take that section of code from the footer.tpl to another file? the footer doesn't control the region you moved the banner to does it? I want my banner towards the top also. Maybe even above the navigation area.

Thanks Nick.....IT WORKED!!! :good:

It created more questions though :lol:

• Is it possible to manage/display more than one banner at a time? (see red x's on screenshot) I would like to display 3 - 4 banners on the right side.

• Is it possible to link a banner to an outside website?

• How do I move a banner above the directory title?

http://www.wrightwood.biz/images/ScreenShot1.gif

Any ideas anyone?

Thanks

Greg
05-30-2006, 09:39 PM
Skip this is the chunk of code you would need to add where you would want it to appear.
{if $banner && $config.banners}
<div style="text-align: center;"><a href="{$banner.url}"><img src="{$banner.image}" alt="{$banner.alt}" title="{$banner.title}" /></a></div>
{/if}