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~ Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/ 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 Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-243581 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~ Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-243645 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. Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-243673 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 ;) Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-243818 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 Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-245826 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. Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-246297 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 Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-246326 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 Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-246346 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. Link to comment https://forums.phpfreaks.com/topic/49683-custom-bullets/#findComment-246363 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.