Skip to main content

HOW TO CUSTOMIZE BEEZ 2 TEMPLATE FOR JOOMLA! 2.5

HOW TO CUSTOMIZE BEEZ 2 TEMPLATE FOR JOOMLA! 2.5

Some times you my need to customize the default templates inorder to use them in a unique way and
some of these customization are tricky especially messing with the underlying code...
Fast forward ama disscuss two partial but major customization of the beez 2 template specifically in Joomla! 2.5.

The two customs ama discuss are the fontsize changer on top of template and then the space which remains at top of the template after removing the font size changer.
  1. Removing the fontsize changer on top of the template

Find and delete or comment this code in beez2/template/index.php:



AND ALSO:

 
   
     2.  To remove the space left after removing the fontsize changer

  • Go to personal.css and change the code as follows:

Code before changes

#header ul
{
display:block;
margin:0px 0px 1px 0px;
text-align:right;
list-style-type:none;
padding:10px 0px 10px 0px;
position:absolute;
top:5px;
right:0px;
}

Code after changes

#header ul
{
display:block;
margin:0px 0px 1px 0px;
text-align:right;
list-style-type:none;
padding:10px 0px 10px 0px;
position:absolute;
top:0px;
right:0px;
}
  • In the same personal.css file find and edit the code below:

Code before edit
#all #header
{padding-top:8em;
}

Code after editing (The ems will vary depending on if you have a Top Menu or not):
Suitable for those with Top Menu in their site if you don't have Top Menu increase the 3ems value to 4 or 5 etc.
#all #header
{padding-top:3em;
}

That is all for now!

Comments

Popular posts from this blog

A Mobile Money Loop Hole Unlikely but Possible

Introduction Happy new year and welcome back to iTechBookPages brand new post. And what a way to start my blogging this year, we be tackling an issue which has been baffling me for a while and now I have decided to share it. Its about mobile money industry which as you are aware is catching up with every Kenyan's daily life. Here in Kenya currently we have Safaricom MPESA  product  as the main player in the Kenyan industry, which i too appreciate its convenience in my day to day operations, be it paying bills, sending money and all possible options which were not there before. There is a lot to thank for the realization of the mobile money but as well there are loop holes which can lead to Telemarketing fraud. I will address  possible Telemarketing fraud in this post which i have not yet heard a case about but i think it can be exploited and wreak havoc to unsuspecting mobile money  consumers . How it can happen In as much as we register our SIM (Subsc...