WebsiteBaker Community Forum
WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started 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?
-
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
-
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
-
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
-
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