You have to create a style for the radio button based on the browser.
Netscape requires styles for the radio button, IE does not. Like so:
<cfif session.NS> <!--- if netscape ---->
<cfset radioStyle1 = "background-color: ##dddddd; color: ##dddddd;">
<cfset radioStyle2 = "background-color: ##bbbbbb; color: ##bbbbbb;">
<cfelse> <!--- if IE ---->
<cfset radioStyle1 = "">
<cfset radioStyle2 = "">
</cfif>
Then use the style in your form like this:
<input type="radio" name="booleanRefinement" value="1" #checked#
style="#radiostyle1#">
--
Jeffrey B. Marsh
Amateurs built the Ark.
Professionals built the Titanic.
-----Original Message-----
From: Kevin Bridges [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 14, 2000 6:08 AM
To: Fusebox
Subject: OT - Netscape Design Question
This is way OT so I ask forgiveness in advance!
When laying out form radio buttons that are contained inside of tables with
bgcolor Netscape draws a white rectangle around the radio button. Has
anyone figured out how to get Netscape to not do this ... It seems like it
would be html 101, but it's driving me nuts!
Thanks
Kevin Bridges
----------------------------------------------------------------------------
--
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
------------------------------------------------------------------------------
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.