RE: [WSG] Aligning a menu to the bottom of a div

2008-07-30 Thread Barry
Yes thats correct. That's a great resource, I image the node would be any div or relative item contained within the div. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barry Sent: 30 July 2008 00:41 To: wsg@webstandardsgroup.org Subject: Re: [WSG]

RE: [WSG] Aligning a menu to the bottom of a div

2008-07-29 Thread Essential eBiz Solutions Ltd
Hi Micheal, if you change the containing DIV to a em based height then adding a em value to the margin-top selector in your css would ensure it stays at the bottom even if the page is resized. Nice easy solution and makes it accessible in all browsers then. -Original Message- From: [EMAIL

Re: [WSG] Aligning a menu to the bottom of a div

2008-07-29 Thread Michael Horowitz
If I wanted to replace my pixels with em's what would I do? I've seen some discussion of them but aren't an expert. I did a fix with margin that did work Michael Horowitz Your Computer Consultant http://yourcomputerconsultant.com 561-394-9079 Essential eBiz Solutions Ltd wrote: Hi

Re: [WSG] Aligning a menu to the bottom of a div

2008-07-29 Thread Bruce Martin
Michael Horowitz wrote: I have a horizontal menu in my header div and I would like it to be aligned at the bottom of my div instead of the top. Try this #header { position: relative; height: 5em; background: #CCC; } #header ul { position: absolute; bottom: 0; left: 0; width:

RE: [WSG] Aligning a menu to the bottom of a div

2008-07-29 Thread Essential eBiz Solutions Ltd
I'm not expert either but to make an expandable/retractable design using em's instead of pixel will make each element resize in relation to each other. i.e. #header ul li{ float:right; font-size:1ems; height: 6ems; margin-top: 0.5ems; } If you use that kind of method then it

Re: [WSG] Aligning a menu to the bottom of a div

2008-07-29 Thread Barry
Hi, if you want to replace pixels with ems the easiest and quickest way is to use the em calculator, you can find it here http://riddle.pl/emcalc/ if you are not already aware of it. Hope this helps If I wanted to replace my pixels with em's what would I do? I've seen some discussion of them

RE: [WSG] Aligning a menu to the bottom of a div

2008-07-29 Thread Essential eBiz Solutions Ltd
That's a great resource, I image the node would be any div or relative item contained within the div. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barry Sent: 30 July 2008 00:41 To: wsg@webstandardsgroup.org Subject: Re: [WSG] Aligning a menu to the