Menu Issues

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
sundog

Menu Issues

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Menu Issues

Post 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;
}
sundog

Re: Menu Issues

Post 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
User avatar
Nullig
Power Poster
Power Poster
Posts: 2380
Joined: Fri Feb 02, 2007 4:31 pm

Re: Menu Issues

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Menu Issues

Post by Dr.CSS »

Yea the position is diff. from the unhovered state so it makes it jump...

  top: 1px;
  left: 1px;
Locked

Return to “Layout and Design (CSS & HTML)”