How to Change the Right Colum to be Displayed to the Left?

HI,

How can i customize this Magento Topaz template to Show the Right Column To the Left Side of the Screen.

Tks

2 answers

Profile photo of Saguaros 0.00 $tone May 25, 2010
Public

Dear mexvolution!

Here is the solution for you;

Pls open the file: /skin/frontend/default/jm_topaz/css/theme.css
a) find codes:

HTML Code:

.ja-lo-2colsr .main {
	background: url(../images/container-bg.gif) repeat-y right #FFFFFF;
}

replace:

HTML Code:

.ja-lo-2colsr .main {
	background: url(../images/container-bg.gif) repeat-y left #FFFFFF;
}

and open the file: skin/frontend/default/jm_topaz/css/layout.css and find code:

#ja-col2 { float: right; width: 240px; overflow: hidden; }

replace:

HTML Code:

#ja-col2 { float: left; width: 240px; overflow: hidden; }

and find code:

HTML Code:

#ja-main { float: left; width: 720px; }

and replace:

HTML Code:

#ja-main { float: right; width: 720px; }

GOod luck

#1

This question is now closed

Written By

Comments