Re: [css-d] Display block?

2006-10-01 Thread ~davidLaakso
Tanya Renne wrote: I'm having trouble getting the top navigation of a site to behave. http://www.orchidsuites.net/lucid/lucid3.html -Tanya- You've got a complicated little package on your server. Cursory tested only in xp ie/6.0, ff, and opera. http://www.chelseacreekstudio.com/ca/cssd/003.html

[css-d] Display block?

2006-09-27 Thread Tanya Renne
I'm having trouble getting the top navigation of a site to behave. http://www.orchidsuites.net/lucid/lucid3.html needs to look like the top of: http://www.lucidllc.com I've cleared up a lot of things and resolved issues ... and revealed others - but now I'm stumped and only making more

[css-d] display block a hover menu problem

2006-09-21 Thread Sander van Surksum
Hi all, Can some one help me out with this problem. I have a menu with a fixed width and on a hover the background changes color but this isn't working well. Can someone please help me out. preview http://www.johnsten.com/css/menu_block.html Regards, Sander

Re: [css-d] display block a hover menu problem

2006-09-21 Thread Rob Wilmshurst
Sander, The main problem is that you're applying the display:block to the :hover section: #navcontainer h3 a:hover { ... display: block; text-decoration: none; ... } This needs to be moved to the 'a' selector: #navcontainer h3 a { ... display: block; ... } That allows

Re: [css-d] display block a hover menu problem

2006-09-21 Thread Sander van Surksum
/menu_block.html Regards, Sander -Original Message- From: Rob Wilmshurst [mailto:[EMAIL PROTECTED] Sent: donderdag 21 september 2006 15:39 To: Sander van Surksum Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] display block a hover menu problem Sander, The main problem

Re: [css-d] display block a hover menu problem

2006-09-21 Thread Rob Wilmshurst
Sander van Surksum wrote: The problem is that the a hover takes the padding from the normal h3 selector and I think that why he isn't changing the whole background on a hover. If you remove the padding from the h3 and apply it to the a, the entire background will change. That's fine if all

Re: [css-d] display block a hover menu problem

2006-09-21 Thread Sander van Surksum
Thanks a lot it works fine in IE and FF -Original Message- From: Rob Wilmshurst [mailto:[EMAIL PROTECTED] Sent: donderdag 21 september 2006 16:07 To: Sander van Surksum Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] display block a hover menu problem If you remove the padding

Re: [css-d] display block a hover menu problem

2006-09-21 Thread ~davidLaakso
Sander van Surksum wrote: I have a menu with a fixed width and on a hover the background changes color but this isn't working well. Can someone please help me out. preview http://www.johnsten.com/css/menu_block.html Sander No need to re-invent the wheel, Sander. Try the vertical list on this