Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using html for fileuploads. The file upload box looks normal on IE, FF, chrome etc. but on Safari instead of the familiar Browse box and then upload box, it has a button called Choose file and next to it text that says 'no file selected' that is not aligned nicely. It does not seem to respond to style:align properties. This link demonstrates the issue.

http://joomemoir.com/be-joo/coding/tips-tricks/problem-with-file-upload-form-in-safari-browser.joo

The same link also gives a very complicated way to make it align properly. But that seems like a lot of code to get one button to align.

Does anyone know of a simple way to make the safari upload control align?

Following code is not aligning properly in safari:

<span style="text-align:right"><form action="upload.php" method="post"
enctype="multipart/form-data"> 
<br>
<input type="file" size=12 name="file" id="file" /><br><input type="submit" name="submit" value="Upload" /></form></span>

Thanks for any suggestions.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.