Not signed in (Sign In)

Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthor10goC
    • CommentTimeMay 10th 2007
     
    Hi, I used 100% width and heigth for a site and it show ok in IE6, but in firefox it displays like a border of about 10 or 15 pixels width on the right and bottom edges of the screen of the background color.
    this is the URL: http://www.turbytoy.com.ar/
    You'll see it better if you click any of the links in the page because they change the color in the movie and this border gets more annoying.

    Thanks
    Diego (not the tiger :P)
    • CommentAuthorphilip
    • CommentTimeMay 10th 2007
     
    it's a CSS issue, not SWFObject. your body tag only has leftmargin and topmargin set:

    <BODY bgcolor="#ff0000" leftmargin="0" topmargin="0">

    I recommend using CSS in the head, not inline like that. Try this:

    <head>
    <style type="text/css">
    <!--
    body {
    margin: 0;
    background-color: #FF0000;
    }
    -->
    </style>
    </head>

    <body>

    //your content

    </body>


    - philp