Joomla 1.7 Beez 20 Help – I received an email from Dave to ask how to remove the Search box at the top right corner in the Beez_20 default Joomla Template. You can accomplish this by Unpublishing the module in the Module Manager. If you want to remove the Font Size Resizers, beside the search box “Bigger Reset Smaller”, the post is here.

[ads5]
Overview of how to remove the Search box
- Unpublish module in Module Manager
1. Login to your Joomla 1.7 Administrator

2. Click on Extesions, Module Manager
3. In the Filters,
- Type in “Search”
- Selection Position = position-0
4. Use the checkbox to select ‘Search” and click on the button ‘Unpublish’.
That’s it. Go to your Joomla 1.7 frontend and refresh your website. You will see the Search box removed. I also removed my resizers so my frontend looks like this:

Thanks,
thanks.
Hi Elijah,
No problem!
Thanks for your visit,
elaine
If you only want to remove the font resizer then it is better to hide this feature in “layout.css”. Look for “#fontsize” and add “display:none;”
It look likes this:
#fontsize
{
padding:0;
margin:0 20px 0 1px;
text-align:right;
margin-bottom:0px;
float:none;
display: none; /* <=== with this you hide the font resizer and keep the search */
}