dannel77 Posted August 5, 2006 Share Posted August 5, 2006 Another thing I was wondering about.. I took a screenshot of the page I'm working with, to show how the bullets (diamonds) of the <ul><li> list in Firefox are tilted slightly upwards, in IE they appear right to the left of the text (as they should), what could be causing this? :-\Also Firefox seems to have a problem displaying a real disc instead of a "diamond", any way to solve this? The master_style.css contains: li{list-style: disc; } [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/ Share on other sites More sharing options...
silentwf Posted August 5, 2006 Share Posted August 5, 2006 W3C...ah yes...W3CBasically in IE, they have a bunch of customized tags and attributes THAT ONLY WORK ON IE!So the problem is just compatibility, I suggest you add something like this to your website [code]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">[/code]for "loose.dtd", there are the options of "transitional" (or was it transition?) and "strict"add that to the VERY top of your code (before <HTML>) Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/#findComment-69778 Share on other sites More sharing options...
AndyB Posted August 5, 2006 Share Posted August 5, 2006 Understanding DOCTYPE and what difference it makes (and why).http://alistapart.com/stories/doctype/ Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/#findComment-69784 Share on other sites More sharing options...
dannel77 Posted August 8, 2006 Author Share Posted August 8, 2006 Thanks guys!! When I added that DOCTYPE line to all the pages (probably item_list.php that was important) the problem was solved! :) Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/#findComment-71345 Share on other sites More sharing options...
dannel77 Posted August 8, 2006 Author Share Posted August 8, 2006 One problem left... with the changes made I get a horizontal scrollbar at the bottom of the page in IE and I can't remove it.. How do I solve this? Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/#findComment-71428 Share on other sites More sharing options...
moberemk Posted August 8, 2006 Share Posted August 8, 2006 Let me guess. You set something to have a 100% width, but it's within something that itself is not 100% width, right? Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/#findComment-71451 Share on other sites More sharing options...
dannel77 Posted August 9, 2006 Author Share Posted August 9, 2006 Problem solved :) Found some code on the net:html { overflow-x: hidden; overflow-y: auto;} Quote Link to comment https://forums.phpfreaks.com/topic/16626-one-more-question-about-lists/#findComment-71734 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.