completeamateur Posted November 17, 2008 Share Posted November 17, 2008 Steam is coming out of my ears... Does anybody know why the form on my site is rendering so poorly in IE? www.footieclassics.com/contact Also the navigation list is displaying a bit strangely... #books li { color:#FF7200; float:left; list-style:lower-roman inside; margin-right:0.4em; } Thanks. Quote Link to comment Share on other sites More sharing options...
dropfaith Posted November 17, 2008 Share Posted November 17, 2008 stares the only difference is your bg image on the bottom is gone in ie on my comp which is a simple fix body,html { background:#000 url(/images/DSC00294.JPG) repeat fixed center; to body,html { background:transparent url(/images/DSC00294.JPG) repeat fixed center; Quote Link to comment Share on other sites More sharing options...
completeamateur Posted November 17, 2008 Author Share Posted November 17, 2008 Strange, that shouldn't be an issue, but i've put a fix in... html { background: #000; body { background: url(/images/DSC00294.JPG) repeat fixed center; Still snookered by the form rendering, can anyone else confirm if it is an issue? perhaps IE6 or 5.5? Quote Link to comment Share on other sites More sharing options...
completeamateur Posted November 17, 2008 Author Share Posted November 17, 2008 Think I've fixed it, although the navigation links are still a bit of a mess, does IE not support list-style-position: inside;?? Quote Link to comment Share on other sites More sharing options...
haku Posted November 18, 2008 Share Posted November 18, 2008 It supports it, but I believe it is set to outside as a default. Either that or Firefox is. I know they are at opposites to each other, I just don't remember which is which. Quote Link to comment Share on other sites More sharing options...
SuperBlue Posted November 18, 2008 Share Posted November 18, 2008 You need to reset the default margin/padding, as this is where the difference is. Don't know what exactly you might be looking for, but i tested the below styles in both IE7 and FF, and it looked the same. ul { margin: 0; padding: 0; list-style-type: lower-roman; list-style-position: inside; } Quote Link to comment 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.