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
Menu Issues
Re: Menu Issues
You may want to take this out, at least the :hover part...
#nav ul ul a:hover {
position: relative;
top: 1px;
left: 1px;
}
#nav ul ul a:hover {
position: relative;
top: 1px;
left: 1px;
}
Re: Menu Issues
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

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
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
#nav ul ul a:hover {
position: relative; <-- try removing this line
top: 1px;
left: 1px;
}
Nullig
Re: Menu Issues
Yea the position is diff. from the unhovered state so it makes it jump...
top: 1px;
left: 1px;
top: 1px;
left: 1px;