| Author |
PHP and HTML: Yellowed Colored Text Boxes?
|
|
| ralphNOSPAM@primemail.com 2005-12-02, 8:53 pm |
| Can someone tell me why some of my PHP web pages with text boxes have
a light yellow color to them and others are white? It doesn't seem to
be related to a text box object having the focus.
| |
|
| ralphNOSPAM@primemail.com wrote:
> Can someone tell me why some of my PHP web pages with text boxes have
> a light yellow color to them and others are white? It doesn't seem to
> be related to a text box object having the focus.
As soon as Opera "knows" a username/password it adds a colored border, maybe
something similar is true for other browsers. If that isn't the case, please
post the code (and probably the css).
Grtz,
Rk
| |
| ralphNOSPAM@primemail.com 2005-12-02, 8:53 pm |
| On Fri, 2 Dec 2005 09:06:43 +0100, "Rik" <luiheidsgoeroe@hotmail.com>
wrote:
>ralphNOSPAM@primemail.com wrote:
>
>As soon as Opera "knows" a username/password it adds a colored border, maybe
>something similar is true for other browsers. If that isn't the case, please
>post the code (and probably the css).
>
>Grtz,
>
>Rk
>
It's not an Opera thing. I see it on different web sites using IE 6.0.
I'll try to post a link to one the next time I see it.
| |
|
| ralphNOSPAM@primemail.com wrote:
> On Fri, 2 Dec 2005 09:06:43 +0100, "Rik" <luiheidsgoeroe@hotmail.com>
> wrote:
>
>
>
>
> It's not an Opera thing. I see it on different web sites using IE 6.0.
> I'll try to post a link to one the next time I see it.
You right - It's not just Opera.
IE does it too for certain common form fields. i.e 'Name' and 'email'
and perhaps a few others. If it really bothers you use a Style sheet to
try and make the browser use your own desired colors.
However using CSS on forms shows up more issues with IE, especially in a
Windows Terminal Server environment (like some color combinations don't
have the desired effect for 'SELECT/OPTION' form controls).
--
VS
| |
|
| Do you have the Google toolbar in your browser?
These are the fields it CAN fill in automatically.
"VS" <vs@nospam.blueyonder.invalid> wrote in message
news:UYnkf.118162$375.44436@fe3.news.blueyonder.co.uk...
> ralphNOSPAM@primemail.com wrote:
>
> You right - It's not just Opera.
>
> IE does it too for certain common form fields. i.e 'Name' and 'email' and
> perhaps a few others. If it really bothers you use a Style sheet to try
> and make the browser use your own desired colors.
>
> However using CSS on forms shows up more issues with IE, especially in a
> Windows Terminal Server environment (like some color combinations don't
> have the desired effect for 'SELECT/OPTION' form controls).
>
> --
> VS
| |
| ralphNOSPAM@primemail.com 2005-12-03, 6:55 pm |
| On Sat, 03 Dec 2005 21:51:24 GMT, "Mike" <ampeloso@verizon.net> wrote:
>Do you have the Google toolbar in your browser?
>These are the fields it CAN fill in automatically.
>
Yes I have the Google Toolbar. So that's what causes the light yellow
field color? The Google Toolbar?
| |
| Neil Chivers 2005-12-06, 6:57 pm |
| I had the same problem with the Google toolbar.
See: http://code.jenseng.com/google/ for a javascript solution
<ralphNOSPAM@primemail.com> wrote in message
news:41e4p11eh2apa6l2tjs81rcv8a1no55hmr@
4ax.com...
> On Sat, 03 Dec 2005 21:51:24 GMT, "Mike" <ampeloso@verizon.net> wrote:
>
> Yes I have the Google Toolbar. So that's what causes the light yellow
> field color? The Google Toolbar?
>
>
| |
| Jim Michaels 2006-01-16, 7:56 am |
| remedy:
<input name="abc" type="text" style="background-color:White;">
<textarea name="def" cols="50" rows="4" wrap="virtual"
style="background-color:#FFFFFF;"></textarea>
both styles do the same thing. sets it to white. in the same manner, you
can set other fields to Yellow to show them as required (or whatever) -
ahh - why did Google do that to us?
<ralphNOSPAM@primemail.com> wrote in message
news:bmnvo15req9oqhtk3lcr86ugkd21npgqlu@
4ax.com...
> Can someone tell me why some of my PHP web pages with text boxes have
> a light yellow color to them and others are white? It doesn't seem to
> be related to a text box object having the focus.
>
|
|
|
|