Thank you for the help. I have a general .CSS that is controlling most of my site. If on one page, I want one of the DIV tags to ignore one of it's attributes, specifically a padding-top; does that page need it's own CSS file, or can I place in the header an 'over riding" line of code? Hope this make sense. Thanks in advance.
@hendrix940 Nope. If you're using Wordpress, target the body ID along with the div class/ID and set the padding-top to 0. If you're not using Wordpress, just declare a body ID and go from there.
Example
/* #about represents the body ID .information represents the div class */ #about .information {padding-top: 0;}
Chris, so writing it like that, then on the 'about' page, the padding-top will be set to zero, in the information div, over ridding whatever the padding-top value is on the information div, correct?
Example