html - Rendering in Dreamweaver different than live site -
i responsible site needs work in ie 9 current browsers. site http://www.wtc.army.mil/ have made changes current live site , need push them live, when render inside dw in ie 9, few minor elements on page not render though haven't changed these sections of code (these elements being: social media icons @ top right of page not display, glyphicons (i think that's they're called) next of links @ bottom won't display, , 1 other image next paragraph on right side of page).
i have compared new code current live site , there no differences within code besides minor changes should not affect failed elements mentioned. changes have made should in no way affect these elements not displaying properly. dw rendering page differently how show when push live, , these elements aren't rendering correctly in dw fine when push them live? thing note new code works perfect in other browsers. ie causing issue. main question is: possible dw render code in ie differently how appears when pushed live?
dreamweaver has had issue. why webdevelopers not use program dreamweaver, because not browser , design view cannot render one. totally not fault, dreamweaver's.
my best guess have ie specific css fix difference in browsers.
@media screen\0 { /*css here applies ie 8, 9 , 10*/ } @media screen\9 { /*css here applies ie 6 , 7*/ }
or if doesn't work, add stylesheet html head has ie css:
<!--[if ie]> <link rel="stylesheet" type="text/css" href="all-ie-only.css" /> <![endif]-->
Comments
Post a Comment