Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove entire box_heading cell?


Guest

Recommended Posts

Posted

Is there anyway to remove the boxheadings in full? I don't use half of my boxheadings and now they jus add a lot of unecessary spacing in the columns.

Text has been deleted but the cell is still there taking up space if you know what I mean. Any ideas?

 

XoXo,

Jess

Posted

Are you meaning to remove the title Currencies or Languages etc?

 

To remove the heading Currencies from the currencies box all I did was open the includes/boxes/currencies.php then comment out the function call to infoBoxHeading. Look for the code:

 

<?php
   $info_box_contents = array();
   $info_box_contents[] = array('text' => BOX_HEADING_CURRENCIES);

   new infoBoxHeading($info_box_contents, false, false);

You can either just comment the line as so:

 

//new infoBoxHeading($info_box_contents, false, false);

 

Or delete it totally.

Posted
Are you meaning to remove the title Currencies or Languages etc?

 

To remove the heading Currencies from the currencies box all I did was open the includes/boxes/currencies.php then comment out the function call to infoBoxHeading. Look for the code:

 

<?php
   $info_box_contents = array();
   $info_box_contents[] = array('text' => BOX_HEADING_CURRENCIES);

   new infoBoxHeading($info_box_contents, false, false);

You can either just comment the line as so:

 

//new infoBoxHeading($info_box_contents, false, false);

 

Or delete it totally.

 

Almost. :)

When deleting the heading there's still a lot of space left for where the heading is supposed to go. The padding between the boxes becomes a bit off and it looks uneven. So... how to get rid of the space left behind?

 

:blink:

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...