Doug Niven wrote:

> http://www.montanamasterchefs.com/schedule.php
> 
> Using IE the gold bullets above are "top" aligned while in other 
> browsers they are "bottom" aligned.

Not in _all_ other browsers.

> Any suggestions or workarounds how to make this the same for IE as 
> well? Ideally I'd like it "middle" aligned.

If you want cross-browser consistency with images as bullets, it is
easier to achieve with background-images.

Make it...

.bullet_list  {padding: 0; margin: 0; list-style: none;}
.bullet_list li { list-style: none; margin: 0; padding: 0 0 0 15px;
background: url("/images/bullet_gold.jpg") 0 0.6em no-repeat; }

...and all browsers will cooperate and middle-align them quite well.

Notice the change to .bullet_list, referring to a class="bullet_list" so
you have to make that change in the markup also.
An ID should only be used once in the markup, while classes are for
repeated use.


Notice also that your page triggers quirks mode in all browsers. Not
that it will make much difference, but maybe you intended to trigger
standard mode, in which case you should use another doctype...
<http://gutfeldt.ch/matthias/articles/doctypeswitch/table.html>

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to