J1.5

J1.5:Customising the JA Purity template/customisations/Centering the hornav

From Joomla! Documentation

Revision as of 00:15, 17 March 2009 by Bino87 (talk | contribs) (Built base guidelines)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



The simpliest way to center the hornav menu, in Ja_Purity template, is to edit the file templates\ja_purity\index.php.

Open with a text editor that file; about at line 145 you will find:

   <!-- BEGIN: MAIN NAVIGATION -->
   <?php if ($this->countModules('hornav')): ?>
   <div id="ja-mainnavwrap">
   	<div id="ja-mainnav" class="clearfix">		<---- EDIT THIS
   	<jdoc:include type="modules" name="hornav" />
   	</div>
   </div>
   <?php endif; ?>
   <!-- END: MAIN NAVIGATION -->

In the signed line add these style information: width: 500px; margin: 0 auto; You will obtain something like it:

   <div id="ja-mainnavwrap">
   	<div id="ja-mainnav" class="clearfix" style="width: 500px; margin: 0 auto;">  <-- EDITED
   	<jdoc:include type="modules" name="hornav" />
   	</div>
   </div>