A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Fix for Firefox and sizing

  1. #1
    Senior Member gkbdave's Avatar
    Join Date
    Nov 2000
    Location
    Fort Bragg, NC
    Posts
    304

    Fix for Firefox and sizing

    I am trying to find the code to fix a problem I have that when viewed in Firefox the site is really small. Does anyone know the fix for this.. To see what I mean visit this link..
    Thanks for any help..
    Website

  2. #2
    Banned NTD's Avatar
    Join Date
    Feb 2004
    Posts
    3,438
    Firefox handles dimensions differently than IE, try pasting this inside the head tags in the HTML document...
    code:

    <style type="text/css">
    <!--
    html, body {
    height: 100%;
    width: 100%;
    margin: 0; padding: 0;
    }
    -->
    </style>


  3. #3
    Senior Member gkbdave's Avatar
    Join Date
    Nov 2000
    Location
    Fort Bragg, NC
    Posts
    304
    NTD,
    Thank you very much.. I have searched all over to fix this.. It works great..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center