Im having problems with the news slider, the promo bullets are not showing up.
My code looks like this:
PHP Code:
<div id="promo-box">
<div id="promo-bullets"></div>
{counter assign=i start=0 print=false}
{section name=d loop=$promo}
{counter}
<div class="promo-container" style=" background-image: url('{$promo[d].image}'){if $i != '1'}; display: none;{/if}">
<div class="promo-content-container">
<div class="promo-content">
<div class="title">{$promo[d].title}</div>
<div class="body">{$promo[d].shortstory}</div>
</div>
</div>
</div>
{/section}
</div>
<script type="text/javascript">
document.observe("dom:loaded",function() {
PromoSlideShow.init() });
</script>
It only shows 1 news and no promo bullets
////Mods close thread please.
Was missing some javascript.