I've spent more than eight hours on this and still haven't reached a solution. I've searched the forum many times, but to no avail. If anyone could point me in the right direction, I would be very grateful.
I have a CSS menu set-up in menu manager and attached the proper CSS. That part is running great.
Now here is where the problem starts: My customer would like a mouseover on top level li's only. The mouseover, when activated, would cover part of the main content box below the menu. I have modified the template in menu manager so that li's id is the alias, by using id="{$node->alias}".
Then I set-up a CSS using these:
Code: Select all
li#alias {
left: 0;
}
li#alias a:hover {
background: transparent url(/uploads/images/home/newhomepagepic.jpg) top left no-repeat;
width: 558px;
height: 309px;
margin-top: 20px;
top: 150px;
}
Thanks!