WebsiteBaker Community Forum (upd)

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: Vipermaxx on June 20, 2009, 02:44:39 PM

Title: Moving Menu in round template
Post by: Vipermaxx on June 20, 2009, 02:44:39 PM
Hi All,
I start using the round template which is very nice. But I wish I could move the whole menu section from left side of the screen to the right side. I don't know how. I played little with the css file but still haven't figured it out. Can someone please help?
Title: Re: Moving Menu in round template
Post by: BlackTiger on June 21, 2009, 11:48:14 AM
Hello,

the round template is based on tables so you have to edit the index.php and move the column which produces the content (the one with <?php page_content(); ?> on top of the column with the menu.

regards
Michael
Title: Re: Moving Menu in round template
Post by: Vipermaxx on June 21, 2009, 01:40:07 PM
Thanks, But still I can't figure it out. Can you please be more specific and tell me exact which flag or addition I need to add in page content?
How the row suppose to look like?
Thanks in advance
Title: Re: Moving Menu in round template
Post by: BerndJM on June 21, 2009, 02:46:37 PM
Hi,
simply move this part

<td class="content" width="600" rowspan="2">
     <?php page_content(); ?>
</td>

in front of this part

<?php
    
// Only show menu items if we are supposed to
    
if(SHOW_MENU) {
    
?>
   
   <td style="padding: 10px; background-color: #FFFFFF;" valign="top">
....


Regards Bernd
Title: Re: Moving Menu in round template
Post by: Vipermaxx on June 22, 2009, 10:46:54 AM
Thanks. It worked, although the placement was not correct. I had to move page_content to the beginning of the index.php just after the page banner.
Thanks All