Hi,
Please try with my guide:
Open template.css file in templates/ja_drimia/css folder:
+ at about line875, find following code:
#ja-content {
background:transparent url(../images/content-center.gif) repeat-y scroll 0 0;
float:right;
width:60%;
}
and change to:
#ja-content {
background:transparent url(../images/content-center.gif) repeat-y scroll 0 0;
float:left;
width:60%;
}
+ At about line 925, find following code:
#ja-masscol {
background:#FF760E url(../images/mc-bg.gif) no-repeat scroll 0 0;
color:#FFFFFF;
display:block;
float:left;
height:130px;
margin-bottom:20px;
overflow:hidden;
position:relative;
width:40%;
}
and change to:
#ja-masscol {
background:#FF760E url(../images/mc-bg.gif) no-repeat scroll 0 0;
color:#FFFFFF;
display:block;
float:right;
height:130px;
margin-bottom:20px;
overflow:hidden;
position:relative;
width:40%;
}
+ At about line 890, find following code:
#ja-colwrap {
background:transparent url(../images/col-center.gif) repeat-y scroll center top;
float:left;
overflow:hidden;
width:40%;
}
and change to:
#ja-colwrap {
background:transparent url(../images/col-center.gif) repeat-y scroll center top;
float:right;
overflow:hidden;
width:40%;
}
Hope it helps.