I am working on a zen cart store and I am trying to get the center of the page to overlap the right columns. I was able to do this on the main page by changing the following code:
Code:// the following IF statement can be duplicated/modified as needed to set additional flags if (in_array($current_page_base,explode(",",'list_pages_to_skip_all_right_sideboxes_on_here,separated_by_commas,and_no_spaces')) ) { $flag_disable_right = true; }Code:// the following IF statement can be duplicated/modified as needed to set additional flags if (in_array($current_page_base,explode(",",'index')) ) { $flag_disable_right = true; }
The home page now displays the way I want it to with the left column being there, and the center stretching into the right column. The right column is disabled. How do I achieve this for every single page?



