JJBlaha Posted January 11, 2007 Share Posted January 11, 2007 View [url=http://www.summonersonline.com/a/]this page[/url] in firefox. Then view it in IE. I want it to work like it does in firefox in IE, but cannot figure out how to do it, any suggestions?Make sure you resize the window to very large and very small to get what it is supposed to be doing. Quote Link to comment https://forums.phpfreaks.com/topic/33800-css-template-issue-with-ie/ Share on other sites More sharing options...
ToonMariner Posted January 12, 2007 Share Posted January 12, 2007 have you tried removing teh height: auto from the css declaration for #content. Quote Link to comment https://forums.phpfreaks.com/topic/33800-css-template-issue-with-ie/#findComment-158749 Share on other sites More sharing options...
DarkendSoul Posted January 12, 2007 Share Posted January 12, 2007 Something that you may not of noticed and is unrelated to the problem but if you shrink the window horizontally it doesnt have a point at which it stops shrinking, instead it'll just keep going till it looks too small. Quote Link to comment https://forums.phpfreaks.com/topic/33800-css-template-issue-with-ie/#findComment-158885 Share on other sites More sharing options...
dbrimlow Posted January 14, 2007 Share Posted January 14, 2007 Nice floating technique.The iestyle.css has null values for widths and heights. Where did you come up with this?For the IE try overflow:auto and visibility:visible. Quote Link to comment https://forums.phpfreaks.com/topic/33800-css-template-issue-with-ie/#findComment-160271 Share on other sites More sharing options...
JJBlaha Posted January 24, 2007 Author Share Posted January 24, 2007 Your changes still do not work for pre IE7. If I use the template I may have the user dowload FF or IE7 before they can view the page, or just wait until IE7 is more prevalent.As it is now it works in IE7, but not previous versions, and of course FireFox.As for the technique I had an idea of how to do it and am in the process of expierimenting to get it to work. Quote Link to comment https://forums.phpfreaks.com/topic/33800-css-template-issue-with-ie/#findComment-167847 Share on other sites More sharing options...
dbrimlow Posted January 24, 2007 Share Posted January 24, 2007 #content simply cannot be:[code]height:auto;width:auto;overflow:auto;[/code]without a "visibility:" of either - "default, inherit, hidden or visible"; it will never display correctly in IE 5.x, 5.5 or 6.You also have "overflow:" options of :auto, hidden, visible or scroll.You should create a new css for just IE styles and use a conditional comment tag so it doesn't blow up in real browsers, yet works in IE's various versions.<!--[if IE ]> <link rel="stylesheet" type="text/css" href="/css/ieonly.css" media="screen"><![endif]-->You can then use "overflow: scroll". Quote Link to comment https://forums.phpfreaks.com/topic/33800-css-template-issue-with-ie/#findComment-168292 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.