MOVE JA sulfur menu from top to below slideshow?

Hi great support site,,,,, hope you can help,, i want to MOVE JA sulfur menu from top to below slideshow. where in the code can i edit this?

cheers
dan

2 answers

prbalge 0.00 $tone August 20, 2009
Public

Hi…

Its a simple process. First open the index.php located in templates>ja_sulfur directory

then find this block

Code:

<!-- MAIN NAVIGATION-->
<div id="ja-mainnav" class="wrap">
<div class="main clearfix">

	<ul class="no-display">
		<li><a href="<?php echo $tmpTools->getCurrentURL();?>#ja-content" title="<?php echo JText::_("Skip to content");?>"><?php echo JText::_("Skip to content");?></a></li>
	</ul>

	<?php $jamenu->genMenu (0); ?>
  
</div></div>
<!-- //MAIN NAVIGATION-->

cut this entire code …and then paste it just above this line…

<!-- TOPBLOCK -->

hence ur code should look something like this…

Code:

<body id="bd">
<a name="Top" id="Top"></a>



<!-- HEADER -->
<div id="ja-header" class="wrap">
	<div class="main clearfix">
	
		<?php 
			$siteName = $tmpTools->sitename(); 
			if ($tmpTools->getParam('logoType')=='image') { ?>
			<h1 class="logo">
				<a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a>
			</h1>
		<?php } else { 
			$logoText = (trim($tmpTools->getParam('logoText'))=='') ? $config->sitename : $tmpTools->getParam('logoText');
			$sloganText = (trim($tmpTools->getParam('sloganText'))=='') ? JText::_('SITE SLOGAN') : $tmpTools->getParam('sloganText');	?>
			<h1 class="logo-text">
				<a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a>	
				<span class="site-slogan"><?php echo $sloganText;?></span>
			</h1>
		<?php } ?>
		
		<?php if ($this->countModules('user4')) { ?>
	    <div id="ja-search">
	      <jdoc:include type="modules" name="user4" style="raw" />
	    </div>
		<?php } ?>
		
	</div>
</div>
<!-- //HEADER -->

<?php if ( $this->countModules('ja-slideshow') ) {?>
<!-- SLIDE SHOW -->
	<div id="ja-slideshow" class="wrap"><div id="ja-slideshow-inner">
    <div class="main clearfix">
			<jdoc:include type="modules" name="ja-slideshow" style="raw" />
		</div>
	</div></div>
<!-- //SLIDE SHOW -->
<?php } ?>

<!-- MAIN NAVIGATION-->
<div id="ja-mainnav" class="wrap">
<div class="main clearfix">

	<ul class="no-display">
		<li><a href="<?php echo $tmpTools->getCurrentURL();?>#ja-content" title="<?php echo JText::_("Skip to content");?>"><?php echo JText::_("Skip to content");?></a></li>
	</ul>

	<?php $jamenu->genMenu (0); ?>
  
</div></div>
<!-- //MAIN NAVIGATION-->


<!-- TOPBLOCK -->
<?php if( $this->countModules('user5') ) { ?>
<div id="ja-topsl" class="wrap clearfix">
	<jdoc:include type="modules" name="user5" style="jamodule" />
</div>
<?php } ?>
<!-- //TOPBLOCK -->

now the menu will be just below the slideshow!

#1

This question is now closed

Written By

Comments