Hi
Please edit ja.script.js(templatesja_justiciascripts folder)
Search those lines:
function equalHeightInit (){
var maxh = 0;
var botsl = $('ja-contentwrap');
var botsr = $('ja-col2');
if (!botsl || !botsr) return;
if(botsl.getStyle('height').toInt() > botsr.getStyle('height').toInt()){
maxh = botsl.getStyle('height').toInt();
var wrap3 = $ES('.ja-wrap3', botsr);
wrap3.setStyle('height',(maxh + 13));
} else{
maxh = botsr.getStyle('height').toInt();
var wrap2 = $ES('.ja-wrap2', botsl);
wrap2.setStyle('height',(maxh - 13));
}
}
Change to
function equalHeightInit (){
var maxh = 0;
var botsl = $('ja-contentwrap');
var botsr = $('ja-col2');
if (!botsl || !botsr) return;
if(botsl.getStyle('height').toInt() > botsr.getStyle('height').toInt()){
maxh = botsl.getStyle('height').toInt();
var wrap3 = $ES('.ja-wrap3', botsr);
wrap3.setStyle('height',(maxh + 30));
} else{
maxh = botsr.getStyle('height').toInt();
var wrap2 = $ES('.ja-wrap2', botsl);
wrap2.setStyle('height',(maxh - 30));
}
}