hotalex Posted April 25, 2010 Share Posted April 25, 2010 Dear all, This is the script for button arrow for each boxes and the top right and left rounded corner. To remove it, here is the solution: includes/classes/boxes.php - line 174 ---> line 192 From this: class infoBoxHeading extends tableBox { function infoBoxHeading($contents, $left_corner = true, $right_corner = true, $right_arrow = false) { $this->table_cellpadding = '0'; if ($left_corner == true) { $left_corner = tep_image(DIR_WS_IMAGES . 'infobox/corner_left.gif'); } else { $left_corner = tep_image(DIR_WS_IMAGES . 'infobox/corner_right_left.gif'); } if ($right_arrow == true) { $right_arrow = '<a href="' . $right_arrow . '">' . tep_image(DIR_WS_IMAGES . 'infobox/arrow_right.gif', ICON_ARROW_RIGHT) . '</a>'; } else { $right_arrow = ''; } if ($right_corner == true) { $right_corner = $right_arrow . tep_image(DIR_WS_IMAGES . 'infobox/corner_right.gif'); } else { $right_corner = $right_arrow . tep_draw_separator('pixel_trans.gif', '11', '14'); } to this class infoBoxHeading extends tableBox { function infoBoxHeading($contents, $left_corner = true, $right_corner = true, $right_arrow = false) { $this->table_cellpadding = '0'; if ($left_corner == true) { $left_corner = ''; } else { $left_corner = ''; } if ($right_arrow == true) { $right_arrow = ''; } else { $right_arrow = ''; } if ($right_corner == true) { $right_corner = ''; } else { $right_corner = ''; } Just leave everything blank and it works very nicely... Link to comment Share on other sites More sharing options...
NodsDorf Posted April 25, 2010 Share Posted April 25, 2010 Or you could just upload a transparent pixel for the arrow... 30 second fix. :) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.