I just figured this out and thought I would share incase anyone else is trying to do this. I found the directions at osc.com but soon realized I didn't have a catalog/default.php a file that was needed to make the changes. Then it dawned on me that it might be because with MAX you've got the BTS.
So I just have to use the main_page.tpl instead. Here's how it works
1. Open catalog/includes/application_top.php
2. Find the line (around line 47) that reads
3. after this, add the following lines ....Code:// customization for the design layout define('BOX_WIDTH', 145); // how wide the boxes should be in pixels (default: 125)
6. (set your own width preferences (I have used 165 pixels for the left column and 125 pixels for the right) Save fileCode:// customization for the design layout left column define('BOX_WIDTH_LEFT', 165); // how wide the boxes should be in pixels (default: 125) // customization for the design layout right column define('BOX_WIDTH_RIGHT', 125); // how wide the boxes should be in pixels (default: 125)
7. Now open the second file to edit: catalog/templates/main_page.tpl
you will need to change 2 lines.
8. Find the first line to change that reads
9. REPLACE this line, with the following line ....Code:<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
10. Find the second line to change that readsCode:<td width="<?php echo BOX_WIDTH_LEFT; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH_LEFT; ?>" cellspacing="0" cellpadding="2">
11.REPLACE this line with the following line....Code:<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
5. save the file and upload your 2 changed files to your active installation.Code:<td width="<?php echo BOX_WIDTH_RIGHT; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH_RIGHT; ?>" cellspacing="0" cellpadding="2">




LinkBack URL
About LinkBacks






Bookmarks