Hello sunjeev,
What you want is probably changing the organisation of the template in such a way that complete column at right side of content space goes to left side.
You could begin with simple code-changes in template.css:
Find the subject
/* PRIMARY COLUMN
--------------------------------------------------------- */
make this change in float:
#ja-content {
clear: both;
display: block;
float: right;/*left;*/
width: 65%;
}
Next find this subject:
/* COLUMNS
--------------------------------------------------------- */
make this change in float:
#ja-colwrap {
float: left;/*right;*/
overflow: hidden;
width: 34.9%;
}
Take a look at the result; you will see the order of main content and column has flipped horizontally.
But next you will need some coding experience, because the vertical lines stayed in place at the right side, and you will have to play a bit with margins or paddings.
good luck,
Micrantha