dissapearing div in IE7 with absolute positioning BUG

Discussion in 'HTML & Website Design' started by Brinked, Aug 4, 2008.

  1. #1
    I have an issue in IE7 using absolute positioning on a div. I wish I can change the positioning to relative but right now I cant (its my companies website). anyway here is the page: (view in ie7) http://brinked.com/artnet/ie/iebug.html

    sometimes it shows, sometimes it doesnt...here is the style for that box:

    .helpbox {
    left:815px;
    position:absolute;
    top:150px;
    width:215px;
    }
    Code (markup):
    anybody have any suggestions for this bug?

    thanks
     
    Brinked, Aug 4, 2008 IP
  2. steelfrog

    steelfrog Peon

    Messages:
    537
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Why are you position the box rather than floating it? Try this, and let me know if it works for you. I've not checked your code, so I'm assuming that the wrapper/container ends at the help box's edge at it's current position. If it's set to 100% width, then this may not work for you.

    
    .helpbox {
    float: right;
    width: 215px;
    }
    
    Code (markup):
     
    steelfrog, Aug 4, 2008 IP