I am new to CSS. Ive created the Drupal website and played with the theme.
I have something that I would like to topic. If I log into Firebug and disable CSS properties
background border-color border-style
in the code below
.breadcrumbs .inner { background: none repeat scroll 0 0 #EFEFEF; border-color: #929292 #E2E2E2 #FFFFFF; border-style: solid; border-width: 1px; color: #8E8E8E; }
I get text that looks exactly how I want it.
If I now go into my .css style, which inherits the code and publishes
.breadcrumbs .inner { border-width: 1px; color: #8E8E8E; }
Formatting that I do not want is saved. If I specify .breadcrumbs .inner in style.css, it will not install it again and override what was mentioned above the cascade?
If this is not the case, how to stop inheritance without changing another stylesheet?
Thanks,
Andrew
Additional Information
Here is what I have at the moment

This is what I want to have 
css
Andrew
source share