
Originally Posted by
catangirl
We have set up our Zen Cart to use a dropdown menu for the state field, so we can do the New York County taxes properly.
In the Safari browser on the Mac, the State fill-in field does hot hide properly when it is disabled, so there is a State dropdown AND a State fill in field. It is not a problem in Firefox on the mac or on a windows machine.
What is the best way to fix this?
Thanks.
It appears some of the contributed templates have this problem -- the 'Nightfall' template is one such example, it needs the following code added to it's stylesheet.css file in order to get the redundant state file to hide properly:
Code:
.hiddenField {
display: none;
}
.visibleField {
display: inline;
}
Hope that helps.