Xurion Posted May 2, 2007 Share Posted May 2, 2007 A client of mine who i am building a site for has informed me that the custom bullet points I have created cannot be seen in Firefox. They have the latest versioin, as do I, but I can see the bullets in both IE and FF. The site is at http://www.xurion.co.uk/yewtree/ A page that contains bullets is http://www.xurion.co.uk/yewtree/consultation.php The stylesheet is http://www.xurion.co.uk/yewtree/style.css Thanks in advance Xur~ Quote Link to comment Share on other sites More sharing options...
paul2463 Posted May 2, 2007 Share Posted May 2, 2007 I am using FF ver. 2.0.0.3 and can see bullet points, little blue squares Quote Link to comment Share on other sites More sharing options...
Xurion Posted May 2, 2007 Author Share Posted May 2, 2007 I am using FF ver. 2.0.0.3 and can see bullet points, little blue squares Yes, that is the version my client and I are both using. I hate this situation where its my word against theirs. The more ppl that check tihs for me the better evidence I can have when I try to convince them that it works... Thanks again Xur~ Quote Link to comment Share on other sites More sharing options...
Daniel0 Posted May 2, 2007 Share Posted May 2, 2007 I see it correctly as well. Ask your client to send you a screenshot. Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted May 2, 2007 Share Posted May 2, 2007 looks fine to me... have they cleared their cache???? P.S. maybe their version of FF hates table layouts as much as me ;) Quote Link to comment Share on other sites More sharing options...
mainewoods Posted May 5, 2007 Share Posted May 5, 2007 In your code you specified a bullet type of "disc" <ul type="disc"> <li>Review your IT infrastructure, network design, applications, Information Security policies and procedures </li> but in your css you specify: ul { list-style-image: url(images/template/bullet.gif); margin-left: 20px; /*list-style: none;*/ } maybe that type="disc" above takes precedence sometimes and you should lose that Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted May 5, 2007 Share Posted May 5, 2007 type is not a recognized attribute for anything but a form input (as far as I am aware) it will have no bearing on how teh css is parsed and displayed. Quote Link to comment Share on other sites More sharing options...
mainewoods Posted May 5, 2007 Share Posted May 5, 2007 type is valid for ul, but is deprecated: http://www.htmlcodetutorial.com/_UL_TYPE.html Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted May 5, 2007 Share Posted May 5, 2007 well I never! You learn something new every day - no matter how useless Quote Link to comment Share on other sites More sharing options...
mainewoods Posted May 5, 2007 Share Posted May 5, 2007 I did tell him to lose it, ToonMariner. Instead set that attribute in css: list-style-type: square; list-style-image: url(your url); the order of those is important I believe, don't reverse the order. 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.