Board index » html » form text field background colour

form text field background colour

2003-09-21 11:51:00 PM
I am using dreamweaver to build a form and the problem I am having is when I
F12 the text fields are yellow.
I have tried
<!--
#name
{
background-color:#FFFFFF;
}
-->
and
<input style="background-colour: #FFFFFF" name="name" type="text" id="name"
value="Please enter your email">
but they stay yellow
-
 

Re:form text field background colour

Derek Johnson wrote:
Quote
I am using dreamweaver to build a form and the problem I am having is when I
F12 the text fields are yellow.
what is F12?
Quote
I have tried

<!--
#name
{
background-color:#FFFFFF;
}
-->

and

<input style="background-colour: #FFFFFF" name="name" type="text" id="name"
value="Please enter your email">

but they stay yellow
try simply "background:#fff". The code is not incorrect, but it could be
that your browser does not recognise it. What browser is it?
Kae
-

Re:form text field background colour

F12 is just the shortcut for preview in browser.
I tried that in Mozilla, ie6 and Opera
"Kae Verens" <kverens@contactjuggling.org>wrote in message
Quote
Derek Johnson wrote:
Quote
I am using dreamweaver to build a form and the problem I am having is
when I
Quote
F12 the text fields are yellow.

what is F12?

Quote
I have tried

<!--
#name
{
background-color:#FFFFFF;
}
-->

and

<input style="background-colour: #FFFFFF" name="name" type="text"
id="name"
Quote
value="Please enter your email">

but they stay yellow

try simply "background:#fff". The code is not incorrect, but it could be
that your browser does not recognise it. What browser is it?

Kae

-

Re:form text field background colour

Derek Johnson schrieb:
Quote

I am using dreamweaver to build a form and the problem I am having is when I
F12 the text fields are yellow.

I have tried

<!--
#name
{
background-color:#FFFFFF;
}
-->

and

<input style="background-colour: #FFFFFF" name="name" type="text" id="name"
value="Please enter your email">

but they stay yellow
There must be some other style rule overriding your rules. Give us the
URL so we can check the complete code, not just the above code snippet.
Matthias
-

Re:form text field background colour

"Derek Johnson" <dekkie246@hotmail.com>wrote:
Quote
I am using dreamweaver to build a form and the problem I am having is when I
F12 the text fields are yellow.
Do you have the Google searcg bar installed? Or anything else that
remembers form data? Try changing the name of the form field to
something less common.
Quote
I have tried

<!--
#name
{
background-color:#FFFFFF;
}
-->
Presumably within a <style type="text/css">...</style>block?
Quote
and

<input style="background-colour: #FFFFFF" name="name" type="text" id="name"
Well, that won't work. CSS uses US spelling, so no 'u' in color.
Steve
--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor
Steve Pugh <steve@pugh.net><steve.pugh.net/>
-

Re:form text field background colour

Derek Johnson wrote:
Quote
><input style="background-colour: #FFFFFF" name="name" type="text"
silly me. you "misspelled" 'color' - the CSS specifications were created
with Merkins in mind.
Kae
-