I have a vertical menu that the client wanted to be drop-down. The problem is that just to the right of the navigation is a large carousel of images on the front page and a single image on all other pages. When I go to the dropdown, it pulls the image with it, as if it were attached. I've tried changing the width; added padding right. So far nothing. Anyone have any thoughts?
I'm using a simple css drop down:
#global-nav{
}
#global-nav li a{
display:block;
}
#global-nav ul ul a:hover{
}
#global-nav ul ul{
display:none;
list-style-type:none;
}
#global-nav ul:hover ul{
display:block;
}
Thanks!