I am trying to get my left-mass blocks side by side with my right blocks
The unmodified blocks are laid out like this
<blocks name="middle" colwidth="25">
<block name="left-mass-top">left-mass-top</block>
<block name="left1">left</block>
<block name="left2">right</block>
<block name="left-mass-bottom">left-mass-bottom</block>
</blocks>
I thought it would be as simple as changing the blocks as such
<blocks name="middle" colwidth="25">
<block name="left-mass-top">left-mass-top</block>
<block name="right1">left</block>
<block name="right2">right</block>
<block name="left-mass-bottom">left-mass-bottom</block>
</blocks>
When I make the change, While the blocks lay out properly, there is an error printed at the top of the page:
[PHP]Warning: Division by zero in <server_info_removed>/htdocs/flp/plugins/system/jat3/jat3/core/template.php on line 701[/PHP]
I am assuming that this comes from trying to have left-mass blocks with right blocks
Can someone help me figure out the proper way to configure the blocks so I get my modules going across the width of the page? I’ve hidden the main content and want right1 and right2 to be beside left-mass-top.
Thank you