The following code works fine in OS X Firefox and Safari, but not in Windows Firefox or IE:
{exp:weblog:entry_form weblog="locations" return="test_pages/location_thanks_test" show_fields="address1|address2||city|state|zip"}
<input type="hidden" name="title" id="title" value="Address Entry" />
{custom_fields}
{if required}* {/if}{field_label}:
{field_instructions}
{if textarea}
<textarea id="{field_name}" name="{field_name}" dir="{text_direction}" cols="50" rows="{rows}">{field_data}</textarea>
{/if}
{if textinput}
<input type="text" dir="{text_direction}" id="{field_name}" name="{field_name}" value="{field_data}" maxlength="{maxlength}" size="50">
{/if}
{if pulldown}
<select id="{field_name}" name="{field_name}">
{options}<option value="{option_value}"{selected}>{option_name}</option>{/options}
</select>
{/if}
{if date}
<input type="text" id="{field_name}" name="{field_name}" value="{field_data}" maxlength="{maxlength}" size="50">
{/if}
{if relationship}
<select id="{field_name}" name="{field_name}">
{options}<option value="{option_value}"{selected}>{option_name}</option>{/options}
</select>
{/if}
{/custom_fields}<input type="image" src="/graphics/submit_button.jpg" value="Submit" /></align>
{/exp:weblog:entry_form} I can’t see anything in it that would break the Windows browsers.
Can anyone see what’s wrong here?
Thanks.