Hi
The template that you have currently loaded on your site is not JA Kaynite but its JA Lead.
Hence if you need a fix for JA Lead here is the solution
open the template.css file found under templates/jalead/css/template.css
find this section
#ja-mainbody {
float: left;
width: 650px;
}
#ja-content {
float: right;
width: 500px;
}
/* COLUMNS
--------------------------------------------------------- */
/*common style for column*/
#ja-col1 {
float: left;
width: 150px;
font-size: 92%;
}
#ja-col2 {
float: right;
width: 310px;
font-size: 92%;
}
now ja mainbody is the main container of the left…hence say if you want to reduce right column then first jacol2 you see width of 310 say you want to reduce it to 210 then you specify that
then in the main body increase width from 650 to 750 (same amount needs to be increased as you have reduced for col2
now for ja content from 500 you will need to increase to 600.
hence now your content portion would be increased by 100px and right column reduced by 100 px