I use lastrss to display a small ticker on my site site wide I was looking at doing banners but this was easier
here is a link to my site http://gr8greenhosting.com the ticker is just under the chat banner on the right, If you need something like that I'd be glad to help it takes a wee bit of coding and css changing here is the site I got the script from http://www.dynamicdrive.com/dynamicindex17/rsstickerajax/index.htm
Is it possible to add php to the tpl files? I have a banner rotation set up on my regular php layout (The banners are added to my site through my cPanel) I would like to have the same banner layout on my WHMCS areas
this is the code to display my banners
<div align="right">
<?php $file = file_get_contents ('http://gr8greenhosting.com/banner.shtml');
Echo $file;
?>
</div>
I did it in php, because the only other option was to have this code on .shtm or .shtml files
<!--#include virtual="cgi-bin/entropybanner.cgi"-->
to have them display
I'm sure I could do it with an iframe but would rather avoid that if I could
this is my sites home page http://gr8greenhosting.com/ I would like to get that banner to show on the client side as well
Thanks in advance for any input