hello! I have a menu in my left part of my site, it has a border. some parts of this menu open a submenu under it, everything move without problem, but the border is always in the same place, and I need it move to content all the menu. This is what I have: menu #menu { float:left; margin-top:25px; width:240px; height:400px; border-style: solid; border-color: #0e69be; border-size: 1px; border-width: 1px; } HTML: And the submenu: ul.menu ul { display:none; list-style:none; } ul.menu li:hover > ul, ul.menu li:active { display:block; } HTML: Thanks!! Regards