Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
This topic contains 1 reply, has 1 voice, and was last updated by drewhart71 16 years, 8 months ago.
The forum ‘Other Templates’ is closed to new topics and replies.
test
I want to have fixed/static articles in the drop-down headers (“Header Spotlight”) in the Pluto template. I figure this is the code I need to change:
<!– BEGIN: HEADER SPOTLIGHT –>
<div id=”spotlight”>
<ul class=”headtab-wrapper”>
<?php if ( mosCountModules( ‘top’) ) { ?>
<li class=”headtab” id=”headtab-1″>
<a>Message</a>
</li>
<?php }
if ( mosCountModules( ‘user5’) ) { ?>
<li class=”headtab” id=”headtab-2″>
<a>Message</a>
</li>
<?php }
if ( mosCountModules( ‘user1’) || mosCountModules( ‘user2’) || mosCountModules( ‘user6’) ) { ?>
<li class=”headtab” id=”headtab-3″>
<a>Top Stories</a>
</li>
<?php } ?>
<li class=”headtab” id=”headtab-4″>
<a>Our Sponsors</a>
</li>
</ul>
<div class=”sl-wrapper”>
<?php if ( mosCountModules( ‘top’) ) { ?>
<div class=”stretcher” id=”stretcher-1″>
<?php mosLoadModules(‘top’,-2); ?>
</div>
<?php }
if ( mosCountModules( ‘user5’) ) { ?>
<div class=”stretcher” id=”stretcher-2″>
<?php mosLoadModules(‘user5’,-2); ?>
</div>
<?php }
if ( mosCountModules( ‘user1’) || mosCountModules( ‘user2’) || mosCountModules( ‘user6’) ) { ?>
<div class=”stretcher” id=”stretcher-3″>
<div class=”col”>
<?php mosLoadModules(‘user1’,-2); ?>
</div>
<div class=”col”>
<?php mosLoadModules(‘user2’,-2); ?>
</div>
<div class=”col”>
<?php mosLoadModules(‘user6’,-2); ?>
</div>
</div>
<?php } ?>
<div class=”stretcher” id=”stretcher-4″ style=”text-align: center;”>
<?php mosLoadModules(‘banner’,-2); ?>
</div>
</div>
<script language=”javascript” type=”text/javascript”>init();</script>
</div>
<!– END: HEADER SPOTLIGHT –>
So, if I have the url of the articles I want to post in each “Header Spotlight” how would I make that static content? Many thanks in advance,
Drew
This topic contains 1 reply, has 1 voice, and was last updated by drewhart71 16 years, 8 months ago.
The forum ‘Other Templates’ is closed to new topics and replies.