X-Cart:Customizing storefront layout

From X-Cart 4 Classic
Revision as of 14:41, 1 April 2010 by Admin (talk | contribs) (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…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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;