Re: [css-d] horizontal drop down menu with HORIZONTAL drop down submenus

2006-01-22 Thread Al Sparber
ww wrote:
 Hi folks,
 I am trying to create a simple centered horizontal (text) menu with 
 a
 drop down menu that is HORIZONTAL not vertical. I need it to be 
 placed
 within a table.

 I have been trying to implement this idea:

 http://www.tjkdesign.com/articles/dropdown/demo.asp

 But i can not get it to center and want the drop down menu to center
 toono matter what the browser size is.

 It can be css, or java script, or dhtml. I just need something that
 works.

If you have Dreamweaver, this might be a solution for you:
http://www.projectseven.com/products/menusystems/tbm/demos/design_purecenter.htm

If not, you can see if our CSS approach to centering can be used for 
your page.

Al Sparber
PVII
http://www.projectseven.com

Designing with CSS is sometimes like barreling down a crumbling 
mountain road at 90 miles per hour secure in the knowledge that 
repairs are scheduled for next Tuesday.






__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] horizontal drop down menu with HORIZONTAL drop down submenus

2006-01-22 Thread ww
 If you have Dreamweaver, this might be a solution for you:
 http://www.projectseven.com/products/menusystems/tbm/demos/design_purecenter.htm

 If not, you can see if our CSS approach to centering can be used for
 your page.

 Al Sparber
 PVII
 http://www.projectseven.com

Al,
I don't have mx 2004 just plain old mx (mac version) will your product
work on this version?

I am trying to do it without buying a program but might have to resort
to it if i can't get it figured out!

thanks,
ww
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] horizontal drop down menu with HORIZONTAL drop down submenus

2006-01-22 Thread Thierry Koblentz
ww wrote:
 here is a link to a test page i am working on

 http://www.todayhomes.com/v2/

 i would like the menu to center itself within the table and the drop
 down menu to appear below the main menu no matter what the browser
 window  is sized to.

As Christian said, you need position:relative in #TJKDropDownMenu
To center the menu you can try this:
#menu {width:20em;margin:0 auto}

You have to increase the top margin for IE to have the nested ULs show below
the top level items.
Also, I think you have IE running in Quirksmode, so I believe using a simple
#menu {text-align:center}should do the trick.

HTH,
Thierry | www.TJKDesign.com

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/