akosh Posted June 3, 2005 Share Posted June 3, 2005 What file do I modify to change the spacing? Link to comment Share on other sites More sharing options...
akosh Posted June 3, 2005 Author Share Posted June 3, 2005 ...and here Link to comment Share on other sites More sharing options...
akosh Posted June 4, 2005 Author Share Posted June 4, 2005 ...this should be pretty simple. Link to comment Share on other sites More sharing options...
Iggy Posted June 4, 2005 Share Posted June 4, 2005 ...this should be pretty simple. <{POST_SNAPBACK}> /catalog/includes/boxes ? Edit to taste... Iggy Everything's funny but nothing's a joke... Link to comment Share on other sites More sharing options...
akosh Posted June 4, 2005 Author Share Posted June 4, 2005 /catalog/includes/boxes ? Edit to taste... Iggy <{POST_SNAPBACK}> That doesn't quite do it. I want to reduce these two gaps: Link to comment Share on other sites More sharing options...
Wendy James Posted June 5, 2005 Share Posted June 5, 2005 That doesn't quite do it. I want to reduce these two gaps: <{POST_SNAPBACK}> in the catalog/includes/classes/boxes.php look for ? ?function infoBoxContents($contents) { ? ? ?$this->table_cellpadding = '3'; ? ? ?$this->table_parameters = 'class="infoBoxContents"'; ? ? ?$info_box_contents = array(); ? ? ?$info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '1'))); ? ? ?for ($i=0, $n=sizeof($contents); $i<$n; $i++) { ? ? ? ?$info_box_contents[] = array(array('align' => (isset($contents[$i]['align']) ? $contents[$i]['align'] : ''), ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'form' => (isset($contents[$i]['form']) ? $contents[$i]['form'] : ''), ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'params' => 'class="boxText"', ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' => (isset($contents[$i]['text']) ? $contents[$i]['text'] : ''))); ? ? ?} ? ? ?$info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '1'))); ? ? ?return $this->tableBox($info_box_contents); ? ?} ?} these two lines $info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '1'))); $info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '1')));CODE]place a i pixel high line before and after the content in the box. If you remove them it will get rid of the spaces. Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep. Link to comment Share on other sites More sharing options...
akosh Posted June 5, 2005 Author Share Posted June 5, 2005 Thanks a lot. I completely forgot about that file. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.