Here are some suggestions to try . . . .
To move the column from right to left:
Within file path –> /plugins/system/jat3/jat3/base-themes/default/css/layout.css
at/about line 17, you will see the following:
.column {
float: left;
overflow: hidden;
}
change as follows . . .
.column {
float: right;
overflow: hidden;
}
Styling the column:
Within file path –> /templates/ja_business/css/layout.css
at/about line 33, you will see the following:
.ja-inset2 div.ja-moduletable, .ja-inset2 .div.moduletable, .ja-inset2 div.ja-module, .ja-inset2 div.module {
margin-left: 40px;
margin-right: 0;
}
modify as follows:
.ja-inset2 div.ja-moduletable, .ja-inset2 .div.moduletable, .ja-inset2 div.ja-module, .ja-inset2 div.module {
margin-left: 0;
margin-right: 40px;
}
Let me know if this is the result you were wanting to achieve.