how to create a Window with custom header style in ColdFusion

cfwindow - window with custom header style

cfwindowheaderstyle.cfm


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfwindow tag: how to create window with custom header style in coldfusion</title>
</head>

<body>
<h2 style="color:SlateGray; font-style:italic">cfwindow tag example: Window Header Style</h2>
<hr width="600" align="left" color="CadetBlue" />
<br />

<cfwindow 
 name="ButterflyTreeWindow" 
    title="Butterfly Tree Image" 
    initshow="true" 
    resizable="false"
    center="false"
    height="450" 
    width="550"
    x="25"
    y="100"
    draggable="false"
    headerstyle="background-color:RosyBrown; font-size:large; font-style:italic; font-weight:normal; color:Snow"
    >
 <img src="Images/Butterfly12.jpg" height="391" width="524"/>
</cfwindow>

</body>
</html>





More ColdFusion examples