How to make an external PHP widget page have its own CSS.
The catch is - when the external page is include
d it\'s been affected by the stylesheet of th
You might want to apply a mini CSS reset on your included code. Surround your code in a unique id, like so:
Now apply the reset to everything inside this, using a basic CSS reset like Eric Meyer's, available here: http://meyerweb.com/eric/tools/css/reset/
Now, apply your own CSS. Nearly all outside CSS will be wiped out, and yours will be applied.