all groups > coldfusion flash integration > august 2005 >
You're in the

coldfusion flash integration

group:

CSS in a Flash Form


CSS in a Flash Form Sequenzia
8/19/2005 12:00:00 AM
coldfusion flash integration:
I am trying to apply formatting from a style sheet into a flash form. Attached
is one of the ways that I am trying, but is not working. Please help. Thanks.


<link href="style.css" rel="stylesheet" type="text/css">


</cfquery>


<cfform name="rate_output" format="flash" method="post">

<cfformgroup type="panel" label="Rating Worksheet">


<cfoutput>

<cfformitem type="html">

<div class="outputheader"> Classification Description:</div>

</cfformitem>

</cfoutput>
Re: CSS in a Flash Form walker25419
8/20/2005 12:00:00 AM
You cannot used a linked style sheet with Flash Forms. You have one of two
choice:

1. Inline styles

<cffformgroup type="panel"
style="'roundCorners';backgroundColor:#D0DDF4;headerColors:#D0DDF4, #FFFFFF;"
[quoted text, click to view]

2. "AS" Styles :

<cfsavecontent variable="mypanelstyle">
panelBorderStyle:'roundCorners';
backgroundColor:#D0DDF4;
headerColors:#D0DDF4, #FFFFFF;
</cfsavecontent>

<cffformgroup type="panel" style="#mypanelstyle#"></cfformgroup>

For a complete list of available style attributes for the various form objects
go to http://cfpim.coffeeflower.com/stylemanager/
AddThis Social Bookmark Button