Difference between revisions of "X-Cart:Customizing storefront layout"

From X-Cart 4 Classic
Jump to: navigation, search
(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…')
 
Line 40: Line 40:
 
margin: 0px 25px 0px 250px;
 
margin: 0px 25px 0px 250px;
 
</source>
 
</source>
 +
 +
[[Category:X-Cart user manual]]

Revision as of 14:44, 1 April 2010

Moving flyout menu from right to left hand side

Note: This may not work in all skins

1) Edit skin1/customer/home.tpl, replacin 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;