[WSG] making a menu bar hug the right

2008-02-05 Thread Michael Horowitz
Sorry for the flurry of questions but I've traditionally done my sites with tables and am doing my first completely css site now http://terrorfreeamerica.us/ Just setting up the menu on the left and I'm wondering how to get my menu buttons to hug the left hand side of menu div. Currently its

Re: [WSG] making a menu bar hug the right

2008-02-05 Thread Ron Zisman
On Feb 5, 2008, at 8:51 PM, Michael Horowitz wrote: Sorry for the flurry of questions but I've traditionally done my sites with tables and am doing my first completely css site now http://terrorfreeamerica.us/ Just setting up the menu on the left and I'm wondering how to get my menu

Re: [WSG] making a menu bar hug the right

2008-02-05 Thread David Laakso
Michael Horowitz wrote: http://terrorfreeamerica.us/ Just setting up the menu on the left and I'm wondering how to get my menu buttons to hug the left hand side of menu div. ul { margin: 0; -- :: add :: padding: 0; - :: add :: list-style: none; } Best, ~dL --

Re: [WSG] making a menu bar hug the right

2008-02-05 Thread veine
Good Evening Michael; To your ul rule add no padding and no margin, ie ul { list-style: none; padding: 0 auto; margin: 0 auto; } That should help it out. HTH Regards ~Veine snip On 5 Feb 2008 at 20:51, Michael Horowitz wrote: Sorry for the flurry of questions but I've