Difference between revisions of "X-Cart:Customizing storefront layout"
Line 1: | Line 1: | ||
− | == Moving flyout menu from right to left hand side == | + | == Moving [[X-Cart:Flyout Menus|flyout menu]] from right to left hand side == |
− | {{Note|This may not work | + | {{Note|This may not work for all skins}} |
− | 1) Edit <u>skin1/customer/home.tpl</u>, | + | 1) Edit <u>skin1/customer/home.tpl</u>, replacing the following code: |
<source lang=html4strict> | <source lang=html4strict> |
Latest revision as of 14:48, 1 April 2010
Note: This may not work for all skins
1) Edit skin1/customer/home.tpl, replacing the following code:
<div id="right-bar">
with this one:
<div id="left-bar">
2) Edit skin1/altskin.css, find "fancycat-icons-e li ul" class and replace the following code:
right: 185px;
left: auto !important;
with this one:
left: 185px;
right: auto !important;
3) Edit skin1/altskin.css, find "#center-main" class and replace the following code:
margin: 0px 250px 0px 25px;
with this one:
margin: 0px 25px 0px 250px;