WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: jakoob on January 21, 2010, 09:41:28 AM

Title: Please help me to remove the menu
Post by: jakoob on January 21, 2010, 09:41:28 AM
 :?
Have installed website baker for the first time, need to remove the menu at the top left. How do I do this?

http://baker.worldwebmastersforum.com/pages/front2.php

I am using the template "Round".

thanks
Title: Re: Please help me
Post by: Waldschwein on January 21, 2010, 09:46:14 AM
Hello!

1.) Please use another title for this thread...
2.) Everything about Design is mentioned here: http://help.WebsiteBaker.org/pages/en/advanced-docu/designer-guide.php
3.) Please note there are several hundred different templates...

Yours Michael
Title: Re: Please help me to remove the menu
Post by: YoJoe on January 21, 2010, 10:50:28 AM
firstly backup file index.php,  located in templates/round
Open it in notepad2 or notepad++ (recommended freeware text editors, )
Find this block, and delete it.
Code: [Select]
   <?php
    
// navigation menu
    
if(SHOW_MENU) {
    
?>
   
    <td style="padding: 10px; background-color: #FFF;" valign="top">
        <table cellpadding="0" cellspacing="0" border="0" width="150" align="center" class="menu">
        <tr>
            <td class="border">
                <img src="<?php echo TEMPLATE_DIR?>/images/menu_top.gif" border="0" alt="" />
            </td>
        </tr>
        <tr>
            <td width="170">
                <?php show_menu(); ?>
            </td>
        </tr>
        <tr>
            <td class="border">
                <img src="<?php echo TEMPLATE_DIR?>/images/menu_bottom.gif" border="0" alt="" />
            </td>
        </tr>
        </table>