
Originally Posted by
s0lnishk0
I've got the same problem - it says it's meant to be 3 column and I've got both enabled but only the left one works. I've got quite a few boxes to add there and it just gets overloaded. Would have been better if I could split between left and right. Does anyone know how to fix it?
Also I've asked previously: how to get rid of the word [MORE] in the sidebar near the link to New/Featured products?
Thanks a lot!


Originally Posted by
midpath
Love this template. Is there any way to make it 3 columns? Thanks!
Hi s0lnishk0 and midpath,
This template is two columns, so if you have anything set in right column, it still show up in left column, soryy for that at the moment, hum, maybe in the future when I have time I will think about to create a 3 columns one ? 
To get rid of the [more] work, you need to do some custom work:
1. Create a copy of tpl_box_default_left.php (or tpl_box_default_right.php, depends on where your staff is) from "includes/templates/template_default/common" to "includes/templates/tvzen_jellyfish/common" , then edit it like below
original :
Code:
// choose box images based on box position
if ($title_link) {
$title = '<a href="' . zen_href_link($title_link) . '">' . $title . BOX_HEADING_LINKS . '</a>';
}
//
now
Code:
// choose box images based on box position
if ($title_link) {
$title = '<a href="' . zen_href_link($title_link) . '">' . $title . /* BOX_HEADING_LINKS . */'</a>';
}
//
.
Good luck!