Results 1 to 2 of 2

Thread: MooScrollbar strange float objects behaviour in IE

  1. #1
    Join Date
    Feb 2009
    Posts
    1
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Exclamation MooScrollbar strange float objects behaviour in IE

    Here example http://www.aurumstyle.ru/ie/bug.html

    On scrolling in IE 7 switchers stay on the same position while all other content scrolls as it should.

    I've tryed few methods like relative positioning and toggling hasLayout but nothing help and I have no more ideas.
    Last edited by interrupter; 02-06-2009 at 03:33 PM. Reason: Resolved

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    The containers, which I think in all cases are:

    HTML Code:
    <div class="left_theme_part">
    should be relative to contain the absolutely positioned slider. So, in your stylesheet (as long as it's not contradicted elsewhere in style or script code):

    Code:
    .left_theme_part {
     position: relative;
    }
    Even if it is, you may add the !important keyword:

    Code:
    .left_theme_part {
     position: relative!important;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    interrupter (02-06-2009)

Bookmarks

Posting Permissions

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