cf_window (extJS) and css
I wanted to avoid a solution where each company would have to log into the FarCry administrator (as most sites we do this one is also made using FarCry CMS). So I decided to have a login link on each company presentation site. As I came upon this blog post I decided to try cf_window and have the login form come up in a window instead of the login link leading to a separate login page.
Within minutes I had a nice looking login window on the site. However I noticed that some other elements in the page did not look as (good as) before. A quick check with Firebug showed that a css file /cfext/ext/resources/css/ext-all.css now was linked to and that this file setting some general css styles (like the size of all header elements to be font-size:100%
I don't know if this is standard extJS behavior, but this is BAD (leave my CSS alone!).
So I just went ahead an commented out line 9 - 15 in this css file and all is now good :)


@Dan: RE: Stylesheet Include Placement...unless you manually place your own CSS links in the <body> tag, they will always come before the ones from your include.cfm. This is because CF always places all CFHTMLHEAD includes AFTER the "manually created" lines. Great stuff none-the-less...I like what you have done with the include/widget system as well.