I noticed that when I went back and looked at the site, but it didn't happen when I first tested the changes. I just now reversed the changes (back to what they were before) in Firebug, and the font was still larger. The two property value changes simply could not affect font size... they are not capable of that. Something else that happened while you were editing the stylesheet had to have done it.
Checking, I see that there is some text before the main stylesheet header comment block:
Code:
illie /**
* 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_new.css 3286 2006-03-28 01:14:04Z drbyte $
*/
body {
color:#777777;
font: 10px arial, sans-serif;
background-color:#ffffff;
margin:0;
background-image: url("../images/bodybg.gif");
background-repeat: repeat-x;
}
This is treated as if it connects with the following rule, which is the body{} rule where the site's base font size is set. Deleting the "illie" restores the fonts to normal.
Bookmarks