Guest Posted January 20, 2006 Posted January 20, 2006 Is there a way to adjust the left and right column width? I basically commented out the entire columns, but they are still taking up x amount of width, pushing the main body awkardly depending on the resolution of the screen.
Guest Posted January 20, 2006 Posted January 20, 2006 edit includes/application_top.php and look for.. // customization for the design layout define('BOX_WIDTH', 125); // how wide the boxes should be in pixels (default: 125)
MoisesZaragoza Posted January 20, 2006 Posted January 20, 2006 Well on every page you will see that thre is a space alocated for the column_right and the column_Left so you wil have to go to the targeted page. but the lines you are looking for are <table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table> and <table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> at the end of the day the code will be good
Guest Posted January 20, 2006 Posted January 20, 2006 Well on every page you will see that thre is a space alocated for the column_right and the column_Left so you wil have to go to the targeted page. but the lines you are looking for are <table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table> and <table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> Awsome, thank you guys, fixed it.
MoisesZaragoza Posted January 20, 2006 Posted January 20, 2006 Long Live OSC FoRuM at the end of the day the code will be good
Recommended Posts
Archived
This topic is now archived and is closed to further replies.