|
-
size to fit problem in firefox
does anyone know of a fix for a flash site appearing very small in Firefox?
param is set at 100% instead of pix X pix.
Shows up fine in safari, ie.
any ideas are appreciated.
Thanks!
-
A search of the forums or Google probably would have given you the answer, but...
Firefox interprets code more strictly than say, Internet Explorer. So when you say 100%, Firefox says "100% of what?". To fix it, you can 1) remove the top line of your HTML file (where it says DOCTYPE). That will put Firefox into "quirks" mode where it won't be as strict with the code. Or 2) add some CSS to your page, which will let Firefox know you mean 100% of the page.
Code:
<style type="text/css">
HTML, BODY {margin: 0; padding: 0; width: 100%; height: 100%}
</style>
-
Thank you! I appreciate it!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|