Thanks for the help. I'm now trying to change the columns to 3 evenly spaced across the page. However just changing
\theme_options\mainpage.php:
"count" => 4),
with:
"count" => 3),
and setting
$k_option['mainpage']['mainpage_column'] = 3;
results in 3 columns pushed to the side and I want them evenly spaced across the page.
I'm guessing it's something to do with the setClass('one=fourth') line on the index.php (see below). Can you tell me what else to change please?
// this class generates the 4 boxes, either with backend content or the placeholder content above
$k_option['mainpage']['mainpage_column'] = 3;
$boxes = new kclass_display_box('mainpage','mainpage_column','Mainpage Column', $placeholder);
$boxes-> prev_image($k_option['custom']['imgSize']['M']);
$boxes-> setClass('one_fourth');
$boxes-> display();