On Thu, 13 Jan 2005 12:20:55 +1100, Cook, Graham R <[EMAIL PROTECTED]> wrote: > > > Can anyone assist with a hack that is for Firefox only. I have found that > bot IE6 and Opera 7.54 place the list-image outside the border area of the > ul. Firefox however places the image inside the ul border. The hacks I have > used all affect both Firefox and Opera. Any suggestions please. > > Thanks > Graham Cook >
Well, I've made the things a little different. Look here: http://www.dotplusweb.com/ul_test.html It's similar to what you where trying to achieve and has the same results in firefox 1.0, IE6/Win and Oper 7/Win. The code is different and very smaller and semantic. This is the code (you'd better look it at the url above): <style type="text/css"> <!-- *{ margin:0; padding:0; } body{ margin:10px; font:80% verdana, arial, sans-serif; } #container{ width:240px; background:#d9ecff url(/i/round_bottom.gif) no-repeat bottom left; padding-bottom:20px; } h2{ margin-bottom:2px; padding:0 0 15px 10px; background:#d9ecff url(/i/round_top.gif) no-repeat top right; font-size:110%; border-bottom:2px solid white; } ul{ margin:5px 0 20px 10px; border : thin solid blue; } li{ list-style:outside url(/i/tick.gif) none; border : thin solid red; margin-left:20px; } --> </style> <body> <div id="container"> <h2>Internet Explorer</h2> <ul> <li><a href="/standards/services/newsletter/current.cfm">Newsletter Ed 17</a> (23/11/04)</li> <li>Confidential standards are now hosted on our <a href="http://www.in.telstra.com.au/ism/onlinestandards/">Intranet site</a> (26/06/03)</li> </ul> </div> </body> -- Bruno Cunha Torres www.brunotorres.net ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
