RocketRod Posted May 31, 2014 Report Share Posted May 31, 2014 Does anyone have a banner solution for this skin? I did get one from bannersnack to work, but it restarts every time you go to a new page. Wowslider does not stay the size I create it to be, always larger. Anyone else have a good one? Free preferably. Quote Link to comment Share on other sites More sharing options...
Shepred Posted June 1, 2014 Report Share Posted June 1, 2014 What I usually do is create a php script that choses a random image on page load, instead of a slider. A slider takes the attention away from the important part of the webpage, in my opinion. Here's the code (if you want it to show up on every webpage, put it in 'layout.tpl' or 'core_navigation.tpl'): <?php $rotate[] = "<img src='/lib/skins/YOURSKINFOLDER/IMAGEPATH'/>"; $rotate[] = "<img src='/lib/skins/YOURSKINFOLDER/IMAGEPATH'/>"; $number = rand(0, sizeof($rotate) - 1); echo $rotate[$number]; ?> Let me know if you have any questions Quote Link to comment Share on other sites More sharing options...
RocketRod Posted June 1, 2014 Author Report Share Posted June 1, 2014 Shepred Thank You! I'll give it a go and see how that works for me. Ifanyone else has something to share, please do! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.