Hello,
You may do 2 things one or other:
in file:
{site}/templates/os_vehiclepark_11_13/css/style.css
find block .block_list_in
and add to it row: height: 310px;
or you may
in file
{site}/templates/os_vehiclepark_11_13/javascript/custom.js
at end that file add code:
j
Code: |
Query(document).ready(function($) {
var maximalnayaVisota = 0; // - max-height block.
$(".block_list_in").each(function() {
if ($(this).height() > maximalnayaVisota) {
maximalnayaVisota = $(this).height();
}
});
$(".block_list_in").height(maximalnayaVisota);
});
|
Please backup these files first
Thanks,
OrdaSoft team