Not signed in (Sign In)

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

    • CommentAuthordizarter
    • CommentTimeMar 29th 2008 edited
     
    How can I correctly use CSS tags with SWFObject?

    Basically, I want to hide scrollbar. When using publishing method from Flash, everything works fine, then I just add these lines to html into head section
    <style>
    <!--
    body {
    margin: 0;
    overflow:auto;
    }
    -->
    </style>

    But, when using SWFobject, this doesn't work.
    Please help
    • CommentAuthorphilip
    • CommentTimeMar 29th 2008
     
    use "overflow: hidden" to hide scrollbars on any HTML element, including <body>

    <style>
    <!--
    body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    }
    -->
    </style>

    - philip
    • CommentAuthordizarter
    • CommentTimeMar 29th 2008
     
    Thank you...

    It hides scrollbars in all browsers except IE7 (and Avant Browser, which relies on IE)

    How can I manage it to hide it in IE7 also?

    To be precise, using HTML publishing from within Flash, and adding this same style script, I manage to hide it in IE too.

    What can be the problem here?
    • CommentAuthordizarter
    • CommentTimeMar 29th 2008
     
    Anyone?