html - iframe does not show in IE8 -


i have hotel reservation system inside iframe not show in ie8. i'm thinking doctype issue?

you can view http://bit.ly/15nhlav

this doctype website. iframe not have doctype declared.

<!doctype html> <!--[if ie 8]> <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]--> <!--[if gt ie 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--< [endif]--> 

i've found it'll show iframe if inner width of browser (document.documentelement.clientwidth) 1095px or larger. lower , gets pushed underneath (this happens other browsers tested with, too). however, in ie8 iframe covered element (i couldn't find which), fixed adding following css style:

.iframe-home-res {     z-index:10000; } 

this forces iframe render on top of other elements (unless have z-index greater 10,000, have manually set).

you might want @ iframe's code separately though, looks <select> in wrong place.


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -