On Nov 26, 2006, at 8:41 AM, Dark Ambient wrote: > What I need to figure out is how can I move the Edit link over from > the > title , i.e. % African American Students > Edit ? > I've tried setting margin-left but since each name varies in length > that > didn't work. margin-right didn't do anything at all. > I'd appreciate any suggestions.
Something like this ? <http://dev.l-c-n.com/_temp/tmp20061127.php> You use absolute positioning to put the link on the right side. IE 6 has a problem: it puts the absolute positioned element way to far away to the right. You have to give the parent element (the <li> in this case) 'layout' [1] to protect IE from its own stupidity. I used 'zoom' in a conditional comment. This has a side-effect: IE then positions the list-marker incorrectly. Hope you don't need list-markers, and if you do need them, fake them by using a background image on the <li>. [1] <http://www.satzansatz.de/cssd/onhavinglayout.html> Philippe --- Philippe Wittenbergh <http://emps.l-c-n.com> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
