0

http://techmobile.com/defaultIE8TEST.html#footer

Looks like my table under the hometext div is jacked in IE8 works fine (according to browsershots dot org IE7's body footer is shot too).

ie8 http://browsershots.org/screenshots/6d7e47f9d7a763a5942211235691915c

The table width is not stretching far enough and sets off the other graphics, is my summation of the problem. But what CSS fixes it?

I added the last part #wrapper #hometext. Otherwise, very few nuggets in IE8's CSS

@charset "UTF-8";
/* IE 8 CSS Document */


/* top area */

#top #phone {
    width: 110px;
    font-size: 17px;
    font-weight: bold;
}
#wrapper #headermenu ul.menu li {
    font-weight: bold;
}

#wrapper #hometxt {
  background-color: #FFFFFF;
  border: 0 solid #000</b>

}

ScottJaxon
  • 21
  • 4

1 Answers1

1

Try adding

style="table-layout: fixed;" to the table tag.

NullPoiиteя
  • 56,591
  • 22
  • 125
  • 143
  • hmmm well it's not the table width . . . i've checked all the divs – ScottJaxon Oct 23 '12 at 05:55
  • Ok that did fix the table but it didn't fix the boxes. So the table width was not throwing off the boxes [link] http://techmobile.com/defaultnomoescroll5.html [/link] – ScottJaxon Oct 24 '12 at 06:00
  • @ScottJaxon could you provide the image you want to do – NullPoiиteя Oct 24 '12 at 06:05
  • the bottom blue boxes aren't rendering correctly in IE8. As seen here: http://browsershots.org/screenshots/dac3c2ea6c3e603968c3feeb3a743d2b – ScottJaxon Oct 24 '12 at 15:50
  • ok it was overflow issue: overflow: hidden - now there is a white box showing around the PaPal button only in IE8. – ScottJaxon Oct 24 '12 at 16:28
  • got it: made the background transparent and more from here:http://stackoverflow.com/questions/5133998/iframe-background-transparent-in-ie – ScottJaxon Oct 24 '12 at 17:43