Override CSS
So I found myself wanting to override a few items in a sitewide CSS file, but only for a single page... Rather than make entire new CSS elements, I figured there had to be a way to override the CSS file with a <style> clause within the page itself...
Sure enough, I finally figured it out... !important...
<style type="text/css"> <!-- .overrideme div.overridemetoo { overflow: hidden !important; display: none !important; } --> </style>
!important can go at the end of any style attribute and it will override anything that isn't "important".
I'm a boy... from San Diego, CA (USA). And I don't really have a whole lot else to say about myself.