Form fields

J

jwags

My question involves the way form fields display after publishing. How do you
control the color of the form field. Sometimes, my form fields display in
yellow rather than white for no apparent reason. Is there a way to control
this? Thanks.
 
S

Steve Easton

Do you have the Google toolbar installed??

That will cause this.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
F

FrontPageForms

It is likely you have the Google Toolbar installed. It is remembering fields
for you and highlighting them in yellow.

You can use the following if you wish to defeat this for site visitors. Of
course they may like the yellow.

Forms Google Yellow fields kill for site visitors using IE.

Courtesy of Mike @ http://texaswebdevelopers.com

<!--[if IE]>
<script type="text/javascript">
function killAutofill(){
is = document.getElementsByTagName("INPUT");
for(i=0;i<is.length;i++)
is.style.backgroundColor = "";
ss = document.getElementsByTagName("SELECT");
for(i=0;i<ss.length;i++)
ss.style.backgroundColor = "";
}
window.onload=killAutofill;
</script>
<![endif]-->
 
Top