Groups | Blog | Home
all groups > coldfusion flash integration > march 2007 >

coldfusion flash integration : Flash form background color


pushinluck
3/24/2007 1:45:23 PM
How can I change the background color in a flash form? My current form settings
do not work.

<cfform name="Submit"
format="flash"
width="270"
height="150"
skin="halosilver"
action="search1.cfm"
method="post">
existdissolve
3/25/2007 4:12:22 AM
You can simply apply style="background-color:##000000" to change your
background color (where "000000" is your color).

Note: You'll want to be sure to escape out the "#" with a double "##" or else
your form will throw an error.

So you finished code might look like this:


Be sure to check out

http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhel
p.htm?context=ColdFusion_Documentation&file=00000677.htm for a robust listing
of styles that can be applied to various cfform elements.



<cfform name="Submit"
format="flash"
width="270"
height="150"
skin="halosilver"
action="search1.cfm"
method="post"
style="background-color:##EDEDED">
AddThis Social Bookmark Button