Dusty:

First off, I can't seem to get <cfwindow> to work properly, it looks like 
CF9 has messed that tag up. I've seen that with <cflayoutarea> as well.

That being said, I think the solution to your problem can be accomplish by 
overriding the "x-window-header" and "x-window-body" styles that 
ColdFusion is using. I would try to wrap the <cfwindow> tag in a named 
<div> element like this:

<div id='myStuff'>
  <cfwindow name="window1">
    blah, blah, blah
  </cfwindow>
</div> 

Then include a stylesheet entry like 

#myStuff .x-window-header {
border: 1px solid blue; /* or whatever */
}

#myStuff .x-window-body {
border: 1px solid blue; /* or whatever */
}

Firefox - FireBug plugin is really good at letting you see (and 
dynamically) change the styles for a page element. This should get you 
started.

Sincerely, Brooks



ADS develops & supports effiective, efficient and secure software 
solutions
------------------------------------------------------------------------------
Federal Reserve Bank of Atlanta ∙ Application Delivery Services
1000 Peachtree Street NE ∙ Atlanta,Georgia ∙ 30309-4470 ( 404-498-8178





From:   Dusty Hale <[email protected]>
To:     [email protected], 
Date:   04/26/2012 12:08 PM
Subject:        [ACFUG Discuss] cfwindow - how to change the grey border 
in the header?
Sent by:        [email protected]



Does anyone know how to change the grey curvy border in the headerStyle of 
a cfwindow? Changing the border for the body using CSS is no problem but 
when when I add CSS for the border in the headerStyle attribute it does 
nothing. I'm able to change the background color of the header no problem 
but it looks really funny with the default grey curvy border. I'm trying 
to get it to match the border color I set for the bodyStyle attribute.

Thanks in advance for any help or advice!!

Dusty





<<image/jpeg>>

Reply via email to