Difference between revisions of "X-Cart:Customizing storefront layout"
(Created page with '== Moving flyout menu from right to left hand side == {{Note|This may not work in all skins}} 1) Edit <u>skin1/customer/home.tpl</u>, replacin the following code: <source lang…') |
|||
(One intermediate revision by the same user not shown) | |||
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> | ||
Line 40: | Line 40: | ||
margin: 0px 25px 0px 250px; | margin: 0px 25px 0px 250px; | ||
</source> | </source> | ||
+ | |||
+ | [[Category:X-Cart user manual]] |
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;