Shape 5

Joomla Templates => New Architect - November - Club => : enriquep December 10, 2008, 05:03:11 AM



: A few doubts
: enriquep December 10, 2008, 05:03:11 AM
Hello everybody.

I am new to Joomla! and to this template, and am spending a lot of (fun) time finding my way around and building my new company's site. I have many doubts  :)

For the moment there are two or three things that I would need help with. Sorry if these questions sound very basic to you, I like "finding my way around" but I will appreciate some hints on these particular issues.

 1. Where/How con I modify the top tags? (Register, login in the demo)

 2. Is it possible (and easy) to remove the top bar altogether? (white bar with menu + search in the template)

 3. How can I center the bottom line copyright notice? - I'll like an absolute page center, not a column center. I can guess that I'll have to modify the css to do that, but this one is too complex for me and I'll appreciate some clues.

Thank you for your time and greetings from sunny (and chilly) Madrid.
-Enrique


: Re: A few doubts
: jonahh December 10, 2008, 07:44:06 PM
Hello,

To answer your questions:

1.)  These are located in the template manager.

2.) Yes you can you'll have to open up your index.php file and look at about line 299 for the following and remove:


:
<!-- Menu and Search -->
<div id="s5_headerwrap">


<div class="s5_wrap">
<?php if (($s5_menu  == "1") || ($s5_menu  == "2") || ($s5_menu  == "3")) { ?>
<!-- Start Menu -->
<div id="s5_menuleft">
<div id="s5_navv">


<?php mosShowListMenu($menu_name); ?>
<?php if ($s5_menu  == "1") { ?>
<script type="text/javascript" src="<?php echo $LiveSiteUrl ?>/templates/new_architect/js/s5_no_moo_menu.js"></script>
<?php ?>
<?php if ($s5_menu  == "3") { ?>
<script type="text/javascript" src="<?php echo $LiveSiteUrl ?>/templates/new_architect/js/s5_fading_no_moo_menu.js"></script>
<?php ?>



</div>
</div>
<!-- End Menu -->
<?php ?>
<?php if($this->countModules('top')) { ?>
<div id="s5_menuright">
<div id="s5_searchbox">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
</div>
<?php ?>
</div>


</div>
<!-- End Menu and Search -->

3.) You could try something like:

template_css.css at line 1019 change to the below and play with the width percentage until its centered

:
#s5_footercopyright {
color:#BCBBBB;
float:right;
margin-top:-31px;
width:65%;
}

Regards,