Looking at your site I would first check to see if there is a special .css file installed for the column-grid layout. As I have not installed this I can't check.
If not you could try this, but make copies in the event it does not work.
Find ths code in your stylesheet.css
Code:
.leftboxcontent, .rightboxcontent, .centerboxcontent, .singleboxcontent {
line-height: 110%;
border-top: 1px solid #9a9a9a;
border-bottom: 1px solid #9a9a9a;
padding: 4px;
Change to this
Code:
.rightboxcontent
line-height: 110%;
border-top: 1px solid #9a9a9a;
border-bottom: 1px solid #9a9a9a;
padding: 4px;
vertical-align: bottom;
.leftboxcontent, .centerboxcontent, .singleboxcontent {
line-height: 110%;
border-top: 1px solid #9a9a9a;
border-bottom: 1px solid #9a9a9a;
padding: 4px;
Then see if it produces what you want
Please post back with what you see