osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

help removing 1px space separating infobox header/contents

This is a discussion on help removing 1px space separating infobox header/contents within the osCMax v2 Customization/Mods forums, part of the osCMax v2.0 Forums category; ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax v2 Customization/Mods

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 02-27-2006, 11:41 AM
Member
 
Join Date: Jan 2005
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
adam71o
Default help removing 1px space separating infobox header/contents

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
  #2  
Old 03-08-2006, 01:31 PM
Member
 
Join Date: Jan 2005
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
adam71o
Default RE: help removing 1px space separating infobox header/conten

no one has a clue? wowsers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 03-09-2006, 08:45 AM
Active Member
 
Join Date: Oct 2005
Location: wherever I happen to be at the moment
Posts: 461
Thanks: 4
Thanked 79 Times in 73 Posts
Rep Power: 7
met00 is just really nicemet00 is just really nicemet00 is just really nicemet00 is just really nicemet00 is just really nice
Default RE: help removing 1px space separating infobox header/conten

CSS
__________________
so endith the lesson
<think>sometimes I just sit's and thinks</think>
"Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 03-13-2006, 02:17 PM
New Member
 
Join Date: Mar 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
el1jones
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 03-15-2006, 07:48 AM
Member
 
Join Date: Jan 2005
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
adam71o
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:
&lt;?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') &amp;&amp; empty($SID)) {
    echo tep_cache_categories_box();
  } else {
    include(DIR_WS_BOXES . 'categories.php');
  }

  if ((USE_CACHE == 'true') &amp;&amp; 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') &amp;&amp; ($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 
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

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


All times are GMT -8. The time now is 07:59 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax