Hello,
I only need to move the right column to left hand side. the main image (or contents in other pages)will be shifted to right.
is there any chance i can do this?
regards,
alper
http://www.image-work.co.uk
Hello,
I only need to move the right column to left hand side. the main image (or contents in other pages)will be shifted to right.
is there any chance i can do this?
regards,
alper
http://www.image-work.co.uk
Not exactly sure what you're trying to say here...
You don't "move" the columns - unless of course you're doing a MAJOR overhaul of the software.
You "enable" and "disable" features such as these, using settings and "switches" in several places in the ADMIN console, mainly.
Some of the settings you may wish to play around with are:-
ADMIN >>> CONFIGURATION >>> LAYOUT SETTINGS (then see the "global column settings" references).
Then, if you "disable" a column, remember to check things like your side boxes, and what columns they are set to appear in:-
ADMIN >>> TOOLS >>> LAYOUT BOXES CONTROLLER.
You can also influence the behaviour of the columns by editing the file called "tpl_main_page.php".
If you edit this file, be sure to save the EDITED one in your "custom" folder. Do not over-write the ORIGINAL tpl_main_page.php file.
This is for OVER-RIDE reasons and if you need to know what that means, please search the forum for information on what OVER-RIDES are and how to configure them.
There are other places where you can govern the displaying of a column, for example:-
ADMIN >>> CONFIGURATION >>> EZ-PAGES SETTINGS.
------------------------------------------------
I have DISABLED the right column for practically everything on my website - SA Online Shop. Stuff (side boxes) that may ordinarily appear in the right column I have put in the left column. Take a look (website link below)
20 years a Zencart User
Apple Zen is one of the templates built to only display sideboxes on the right side. Sideboxes enabled for the left sidebar will be displayed on the right instead. (Personally I think this feature, while intended to "protect the newbies", ends up as more of a heavy-handed controller.)
You would need to edit /includes/templates/apple_zen/common/tpl_main_page.php and move the code around <div id="navColumnTwo"> to the area of navColumnOne. There would probably be some other tweaking needed as well.
You may want to post in the Apple Zen support thread for help with this.
Last edited by gjh42; 8 Feb 2008 at 12:53 AM.
thanks for the replies
i appreciate
Hate to bump such an old post, but I believe that the OP was trying to resolve the same issue I was presented with recently.. I received a similar request from a client who DESPERATELY wanted a layout similar to a Template Monster template she had seen and fell in love with.. She KNOWS I will NOT mess with TM templates.. This particular template has both of the sidebox columns on the right hand side of the screen.. This post was the ONLY thing I found in an exhaustive search of this forum that gave me a hint how to do it, and I wanted to share how I resolved it.
As usual gjh42 (AKA one of my Zen Cart heroes) provided me with the valuable clue I needed to attempt this.. I edited the /includes/templates/apple_zen/common/tpl_main_page.php file as he suggested.. With a little rearranging of the page elements, a few stylesheet adjustments, and adjustments to the sidebox and column widths from the admin, I was able to move both of my sidebox columns to display side by side just like that darm TM template my client was so enamored with.. If anyone is interested, you can see the result here: http://clients.overthehillweb.com/he101/
This is down and dirty as of today.. I just wanted to see if it could be done before I move forward with any other template customizations.. HTH someone else..
Thanks.. I thought so too.. I feel so smart now!(thanks to you all here on this forum!)
I wanted to get the layout elements in place before I started adding colors and graphics.. My client is having a difficult time with that process.. She wants to see it done.. I would rather lay the foundation, and build the house first before I start painting and decorating it. (Just makes my life a WHOLE lot easier) So I gave her a pair of rose colored glasses and asked her to be patient!
I can certainly do that..![]()
That would be good to have; it would probably be best to do it on a /template_default/ version of tpl_main_page.php instead of any specific template version. (Of course, package it as /your_template/common/tpl_main_page.php etc.)
Absolutely.. I learned from the best (that's you!) That's EXACTLY what I did..(See I told ya I was feeling smart!
)
I wanted to create a COMPLETELY custom template so I started out with a generic stylesheet, and and have only modified the elements from the /template_default/ and added them to my /MY_TEMPLATE/ folder as I go..
I didn't know how to add this to the Free Add-Ons section, so I decided to zip it and attach it to this post..
For my client, I also included a little snippet that shows the shopping cart totals in the header area. (If you look at http://clients.overthehillweb.com/he101 this appears between the header image and the breadcrumbs on the right) If you want to remove this, delete or comment out this (lines 90-92):Hope others find this useful..Code:<!-- bof cart info --> <div id="cart_header" class="topBox">Shopping Cart<br /><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></div> <!-- eof cart info -->