Jump to content

Herbie

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by Herbie

  1. In your html page you have two div'd with the same id="one". That is just about enough to force IE into Quirks mode and trash-can any concept of predictable behaviour. Remove the second id= "one" div (or rename it) and see what happens.
    It was a good point, I had forgot about the only one ID per page. It's been changed, but unfortunatly still doesn't look right in IE.
  2. Well everything seems to look fine in FF and NS. Of course I can't get that left bar up where it's suppose to be in IE, anyone have any thoughts?The SiteThe CSS/* CSS Document */body { width: 762px; margin-top: 0px; margin-right: auto; margin-left: auto; background-color: #CCCCCC; }#nav { width:120px; position: relative; clear: none;}#content { width: 640px; height: 485px; position: relative; float: right; background-image: url(test/background_1/textbox.jpg);}#left_pics {}#text {}#one { margin: 0px 0px 0px 0px; width:760px; height:105px; border-left-color: #000000; border: solid; border-left-width: 1px; border-top:none; border-bottom:none; border-right:solid #000000 1px; position: relative;}

  3. Notice how you have <!-- and --> surrounding all of your CSS style? Also notice that where your javascript starts (line 78), you have a <!--, and the ending --> shows up around line 101. You need to move that further down to right before the ending </script> tag.
    This was the problem, THANKS!
×
×
  • Create New...