Re: [css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Elli Vizcaino
 It's only simple when you've done the same thing half a dozen times :) > >   Haha so true. I've been coding for years now but it just didn't occur to me that the margin could be the culprit. I don't do a whole lot of drop margins but this design called for it and the spacing between the cont

Re: [css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Tim Arnold
> Wow can't beleive it was a matter of something so simple. Thanks a million! > :)) > > It's only simple when you've done the same thing half a dozen times :) -- tim.arn...@gmail.com __ css-discuss [css-d@lists.css-discuss.o

Re: [css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Elli Vizcaino
> It's really just a matter of distance.  The UL that opens up is too > far down and so your mouse pointer is leaving the hover area for a > second before it gets to the UL.  Remove that 3px top margin and it > should be better. > > -Tim > Wow can't beleive it was a matter of something so simple

Re: [css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Tim Arnold
On Fri, Sep 9, 2011 at 1:15 PM, Elli Vizcaino wrote: > ...so yes the drop down drops on hover now but it just wont stay there so one > can hover over the submenu links, so it's still a problem. > > > Here is the revised code snippet and the url again: > http://e7flux.com/dfd/index.html It's rea

Re: [css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Elli Vizcaino
r-bg.png) bottom repeat-x; }   Elli Vizcaino Web Designer & Developer http://www.E7Flux.com The Best Compliment We Can Receive Is A Referral! - Original Message - > From: Kevin A. Cameron > To: Elli Vizcaino > Cc: CSS Discuss > Sent: Friday, September 9, 2011 12:57 PM >

Re: [css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Kevin A. Cameron
Something along the lines of #main-nav li:hover ul {display:block;} should help. May also want to check the support for the :hover pseudo element on LIs to make sure it accommodates your audienc ( http://www.quirksmode.org/css/contents.html). Kevin On Fri, Sep 9, 2011 at 9:46 AM, Elli Vizcaino

[css-d] Pure CSS Drop Down Menu Help

2011-09-09 Thread Elli Vizcaino
Hello CSS Discuss, I have a site all coded up and the only besides cross browser checking left to do is integrate a drop down behavior to one of the menu items: About. I found a couple of articles and I can't the sub menu to work and drop when one hovers over "About". I have tried the methods i

Re: [css-d] pure CSS drop-down menu

2007-10-16 Thread Roger Keays
Here's my version: http://www.sunburnt.com.au/publications/design/css-menus Jay Rabe wrote: > Hi all, > > I'm still very low on the learning curve, so thank you in advance for > your patience. > > First let me thank eveyone who responded to my earlier (and first) post > to the lis

Re: [css-d] pure CSS drop-down menu - Sperling

2007-10-15 Thread tedd
At 3:12 AM + 10/15/07, Jay Rabe wrote: >This is certainly a nice-looking solution, however I'm curious about >one thing. If I put my cursor tip in a top-level box, it drops down >the sub-menu just fine, but the highlighting in the top-level box is >only "on" if the tip of the cursor is somew

Re: [css-d] pure CSS drop-down menu - Sperling

2007-10-14 Thread Rafael
It's because of the child's (or sub-item's parent) box. They probably thought on give it some margin to make it safer and easier to select, meaning you can go a little out of the item's box and the menu won't disappear, so the issue you describe is caused by their top margin. Hope that

Re: [css-d] pure CSS drop-down menu - Sperling

2007-10-14 Thread Jay Rabe
This is certainly a nice-looking solution, however I'm curious about one thing. If I put my cursor tip in a top-level box, it drops down the sub-menu just fine, but the highlighting in the top-level box is only "on" if the tip of the cursor is somewhere above (ie vertically) the midline of the b

Re: [css-d] pure CSS drop-down menu

2007-10-14 Thread David Hucklesby
On Sun, 14 Oct 2007 08:56:23 -0400, tedd wrote: > Jay Rabe wrote: >> Hi all, >> >> >> Anyway, I'm rebuilding a site that I inherited, and right now I'm stuck on >> the menu >> bar. I want a full-width bar with buttons that change background color on >> hover, with >> drop-downs on some of the but

Re: [css-d] pure CSS drop-down menu

2007-10-14 Thread tedd
Jay Rabe wrote: > Hi all, > > > Anyway, I'm rebuilding a site that I inherited, and right now >I'm stuck on the menu bar. I want a full-width bar with buttons that >change background color on hover, with drop-downs on some of the >buttons, and I'd rather do it with pure CSS (which I know a

Re: [css-d] pure CSS drop-down menu

2007-10-13 Thread joyfulevents
Hi, I am a newbie too, but I found this site very helpful. http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm good luck > Hi all, > > I'm still very low on the learning curve, so thank you in advance for > your patience. > > First let me thank eveyone who responded to

Re: [css-d] pure CSS drop-down menu

2007-10-13 Thread David Laakso
Jay Rabe wrote: > Hi all, > > > Anyway, I'm rebuilding a site that I inherited, and right now I'm stuck > on the menu bar. I want a full-width bar with buttons that change background > color on hover, with drop-downs on some of the buttons, and I'd rather do it > with pure CSS (which I

[css-d] pure CSS drop-down menu

2007-10-13 Thread Jay Rabe
Hi all, I'm still very low on the learning curve, so thank you in advance for your patience. First let me thank eveyone who responded to my earlier (and first) post to the list. I ended up going with the Dreamweaver template feature to do the frames simulation. That's another learnin