J1.5:Customising the JA Purity template/customisations/Centering the hornav
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
| This article is a stub and needs to be expanded. If you can provide information or finish this article you're welcome to do so. Please remove this message afterwards or replace with {{inuse}} while making major edits. - Thank you. |
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>
