Full service web hosting, great prices and support. Starts at $1.99/month!
Results 1 to 5 of 5

Thread: help removing 1px space separating infobox header/contents

  1. #1
    adam71o
    Guest


    Default help removing 1px space separating infobox header/contents


  2. #2
    adam71o
    Guest


    Default RE: help removing 1px space separating infobox header/conten

    no one has a clue? wowsers

  3. #3
    met00
    Guest


    Default RE: help removing 1px space separating infobox header/conten

    CSS

  4. #4
    el1jones
    Guest


    Default RE: help removing 1px space separating infobox header/conten

    It looks like there is a 1px border box around the categories. Post the code from column_left.php and we can check it.

  5. #5
    adam71o
    Guest


    Default

    infobox part of CSS:

    Code:
    .infoBox {
      /*background: #b6b7cb;*/
      border: 1px;
      border-style: none;
      border-color: #9D080D;
      border-spacing: 0px;
    }
    
    .infoBoxContents {
      /*background: #f8f8f9;*/
     /* background-image : url(../../images/OSCMAX_infobox_bg.gif);*/
      font-family: Verdana, Arial, sans-serif;
      font-size: 10px;
      border: 0px;
      border-style: solid;
      border-color: #9D080D;
      border-spacing: 1px;
    }
    
    .infoBoxNotice {
      background: #FF8E90;
    }
    
    .infoBoxNoticeContents {
      background: #FFE6E6;
      font-family: Verdana, Arial, sans-serif;
      font-size: 10px;
    }
    
    TD.infoBoxHeading {
      font-family: Verdana, Arial, sans-serif;
      font-size: 10px;
      font-weight: bold;
      background: #9D080D;
      color: #ffffff;
    }
    
    TD.infoBox, SPAN.infoBox {
      font-family: Verdana, Arial, sans-serif;
      font-size: 10px;
    }
    column_left.php:

    Code:
    <?php
    /*
      $Id: column_left.php,v 1.2.2.1.2.2 2005/09/21 20:57:47 Michael Sasek Exp $
    
      osCMax Power E-Commerce
      http://oscdox.com
    
      Copyright (c) 2003 osCommerce
    
      Released under the GNU General Public License
    */
    
    // BOF: MOD - INFO BOXES - now pulled dynamically as per setting in admin 
    /*
      if ((USE_CACHE == 'true') && empty($SID)) {
        echo tep_cache_categories_box();
      } else {
        include(DIR_WS_BOXES . 'categories.php');
      }
    
      if ((USE_CACHE == 'true') && empty($SID)) {
        echo tep_cache_manufacturers_box();
      } else {
        include(DIR_WS_BOXES . 'manufacturers.php');
      }
    
      require(DIR_WS_BOXES . 'whats_new.php');
      require(DIR_WS_BOXES . 'search.php');
      require(DIR_WS_BOXES . 'information.php');
    */
      $column_query = tep_db_query('select configuration_column as cfgcol, configuration_title as cfgtitle, configuration_value as cfgvalue, configuration_key as cfgkey, box_heading from ' . TABLE_THEME_CONFIGURATION . ' order by location');
      while ($column = tep_db_fetch_array($column_query)) {
    
        $column['cfgtitle'] = str_replace(' ', '_', $column['cfgtitle']);
        $column['cfgtitle'] = str_replace("'", '', $column['cfgtitle']);
    
        if ( ($column[cfgvalue] == 'yes') && ($column[cfgcol] == 'left')) {
          define($column['cfgkey'],$column['box_heading']);
    
          if ( file_exists(DIR_WS_BOXES . $column['cfgtitle'] . '.php') ) {
            require(DIR_WS_BOXES . $column['cfgtitle'] . '.php');
          } 
        }
      }
    // EOF: MOD - INFO BOXES - now pulled dynamically as per setting in admin 
    ?>

Similar Threads

  1. Separating and Moving boxes in osCMax "fallback"
    By mrf62 in forum osCmax v2 Customization/Mods
    Replies: 2
    Last Post: 12-31-2006, 06:27 AM
  2. Strange border around text inside infobox contents
    By adam71o in forum osCmax v2 Customization/Mods
    Replies: 6
    Last Post: 03-07-2006, 01:19 PM
  3. removing extra TD's in the box or infobox headers
    By line47 in forum osCommerce 2.2 Modification Help
    Replies: 0
    Last Post: 09-30-2005, 07:16 AM
  4. differnet header bar for each infobox
    By developer_x in forum osCmax v1.7 Discussion
    Replies: 3
    Last Post: 06-06-2005, 06:37 AM
  5. Space between infoboxes?
    By Kristine in forum osCMax v1.7 General Mods Discussion
    Replies: 1
    Last Post: 03-23-2004, 03:22 AM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •