Ask a Question related to Macromedia ColdFusion, Design and Development.
-
Chris Kemp #1
cfoutput and css
I declare an entire document within a <cfoutput> </cfoutput>
section.
I am trying to insert the following css style descriptor into the
code:
<style tyle=text/css>
input.red {background-color: #cc0000; font-weight: bold; font-size:
12px; color: white;}
input.pink {background-color: #ffcccc;}
input {font-size: 10px;}
textarea.violet {background-color: #ccccff;}
</style>
And no matter how I enclose it in comments, I always seem to get an
error. Any ideas?
TIA
Chris Kemp Guest
-
Cfoutput help!!!
I am trying to figure out how to output records from a query that is returing 2 distinct table rows from each query. THe out put needs to look like... -
No row output if no cfoutput
I've been trying to build a table in the following format: <tr><td>HTML</td> <CFOUTPUT... -
cfoutput prblem
Hi: I made a registration page with coldfusion, then I want the user to edit it's info. So I started the page with a cfquesry and then a cfoutput ... -
cfoutput and cfloop
Hi all, well this is my question: I want to show 2 or more different sets of record sets but one or more of them have to be nested on the first,... -
<cfoutput>
Hi. I'm trying to rename a file but I get an error message. My code looks someting like this: <cfset source='C:\MyDocs\old.doc'> <cfset... -
stpaz #2
Re: cfoutput and css
if you want to display a # in your ouputted page and are within a cfoutput
tag, all you have to do is double up
<style tyle=text/css>
input.red {background-color: ##cc0000; font-weight: bold; font-size:
12px; color: white;}
input.pink {background-color: ##ffcccc;}
input {font-size: 10px;}
textarea.violet {background-color: ##ccccff;}
</style>
stpaz Guest



Reply With Quote

