On Jan 26, 2008, at 5:50 AM, Foundation Flash wrote: > I start with my biggest problem - that on Safari (both Mac and > Windows). > ..... In Safari, however, the <li> > does not extend fully upwards or downwards and is instead limited > to the > area of the text and across wards. This ruins the effect. I have > looked > through lists of Safari problems and asked other but I am well and > truly > stuck.
> http://www.foundation-flash.com Using display:inline-block for the <li> will improve that issue. #navmenu li{ ...... display:inline; display:inline-block; } and remove the padding on the ul #navmenu ul { padding:0; } Philippe --- Philippe Wittenbergh <http://l-c-n.com/> ______________________________________________________________________ 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/
