|
Subject:
|
IE/Firefox compatibility issues
|
|
Posted By:
|
vferratusco
|
Post Date:
|
9/13/2006 11:05:47 AM
|
I am having compatibility problems between IE & Firefox on this page: http://www.tufts-nemc.org/icrhps/resprog/brc/default.asp In firefox it spreads the spacing too far. Can anyone suggest a work around? I also have other issue with firefox, anyone have any suggestions to good reading materials?
Here is the css:
ul#brcthispage{ list-style:circle; line-height:1.5em; }
and the code: <ul id="brcthispage"> <li>Meta analyses</li><br /> <li>Publication bias</li><br /> <li>Predictive modeling</li><br /> <li>Geographic and spatial analyses</li><br /> <li>Analysis of longitudinal data</li><br /> <li>Bayesian computation</li><br /> <li>N-of-1 studies</li><br /> <li>Statistical genetics</li><br /> <li>Environmental statistics</li><br /> <li>Survey and experimental design</li> </ul>
vferratusco
|
|
Reply By:
|
meow
|
Reply Date:
|
9/13/2006 11:56:26 AM
|
I don't find that selector. The list I think you refer to seems to have the ID "thispage".
Anyway, the problem is with your HTML. Delete all the BR tags you've put between the LIs. You can't have any other elements than LIs within UL. A validator would have told you. www.tufts-nemc.org/icrhps/resprog/brc/default.asp&warnings=yes&input=yes" target="_blank">http://www.htmlhelp.com/cgi-bin/validate.cgi?url=http%3A//www.tufts-nemc.org/icrhps/resprog/brc/default.asp&warnings=yes&input=yes You should check your CSS too. www.tufts-nemc.org%2Ficrhps%2Fresprog%2Fbrc%2Fdefault.asp&usermedium=all" target="_blank">http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.tufts-nemc.org%2Ficrhps%2Fresprog%2Fbrc%2Fdefault.asp&usermedium=all
quote: I also have other issue with firefox, anyone have any suggestions to good reading materials?
No, but make sure the code is correct first. Then check if you need to control things like margins and padding where browsers' default styling may differ. Lastly hack for IE if necessary. 
-- http://yupapa.com
|
|
Reply By:
|
vferratusco
|
Reply Date:
|
9/13/2006 12:04:06 PM
|
Thank you for the response. As you can see I am very inexperienced. Although I did realize that after I posted it. Funny thing tho, IE didn't pick it up but firefox did!
vferratusco
|