Page 1 of 1

Menu Issues

Posted: Sun Jul 29, 2007 10:43 pm
by sundog
Hi there;


I've been having a problem troubleshooting an isssue in that whenever I click on a linkl in the menu it bolds, increases in size (In IE 6 quite drammatically) and jumps down and to the right. Does anybody know how to turn this behaviour off, I'm not seeing anything obvious in the css - maybe it's in the menu template ?

To see what I mean go to

http://uat.cippic.ca/index.php?page=action-items

And click on any link

Thanks in advance

Sundog

Re: Menu Issues

Posted: Sun Jul 29, 2007 10:55 pm
by Dr.CSS
You may want to take this out, at least the :hover part...

#nav ul ul a:hover {
position: relative;
top: 1px;
left: 1px;
}

Re: Menu Issues

Posted: Sun Jul 29, 2007 11:45 pm
by sundog
Hi Again :-)

Tryed that one too but no luck - I've been going thru the css of the stylesheet turning things off one by one- But thanks for the suggestion

Cheers

Dave

Re: Menu Issues

Posted: Mon Jul 30, 2007 2:09 am
by Nullig
It is definitely this section. When I remove the "position: relative;" from it, the jumping behaviour stops.

#nav ul ul a:hover {
position: relative; <-- try removing this line
top: 1px;
left: 1px;
}

Nullig

Re: Menu Issues

Posted: Tue Jul 31, 2007 11:45 pm
by Dr.CSS
Yea the position is diff. from the unhovered state so it makes it jump...

  top: 1px;
  left: 1px;