Well, as it turns out, my testers still do not see what I see on my Mac. I even gave them a button to change the color of the backgrounds of the fields to about 5 different choices. They still see black. Interestingly enough however, if they drag through and copy my browser page, they can paste it somewhere like email and it looks perfectly fine - even with the different colors. I am at a loss as to what to do next..
Larry
Browser different on other Macs
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Browser different on other Macs
Code: Select all
var i;
var tInput = document.getElementsByTagName('input');
for (i = 0; i < tInput.length; i++) {
tInput[i].style.borderColor = '#000000';
tInput[i].style.borderWidth = '1px';
}