I am not sure why, but you have 2 style sheets competing;
stylesheet_original.css
stylesheet.original.css
Move, delete, rename the stylesheet_original , if you rename it pick something like old_stylesheet_original.css so that it is not processed as if you place a suffix/trailing modifier.
This may cause a few things that were being set through the second sheet to appear as you do not wish but you are better off with one main style sheet to assist in tracking your changes.
Then in the stylesheet.original.css the following should be the first few lines of code...if not you have the wrong one.
Code:
/**
* Main CSS Stylesheet
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: stylesheet.css 3215 2006-03-20 06:05:55Z birdbrain $
*/
find this code in the file and look at the red highlighted code as this is what you want to change:
Code:
#navBreadCrumb {
margin-top:16px;
background-image:url(../images/centercolumn_capsule.gif);
background-repeat:no-repeat;
background-position:center;
font-size: 0.95em;
font-weight: bold;
padding: 0.5em 0 0.5em 1.5em;
}
Change it to the following or cut and paste this.
Code:
#navBreadCrumb {
margin-top:0px;
background-image:url(../images/centercolumn_capsule.gif);
background-repeat:no-repeat;
background-position:center;
font-size: 0.95em;
font-weight: bold;
padding: 0.0em 0 0.5em 1.5em;
}
This will adjust the breadcrumb positioning