Ah I see where the problem is coming from
Open the following css file:
/components/com_hotspots/views/all/tmpl/default.css
on line 12 you will find
#hs_topmenu {
background:none repeat scroll 0 0 #FBFBFB;
border-left:1px solid #00CCFF;
border-right:1px solid #00CCFF;
float:left;
height:90px;
overflow:hidden;
padding:10px;
width:96%;
}
just remove the height
it should look like this then:
#hs_topmenu {
background:none repeat scroll 0 0 #FBFBFB;
border-left:1px solid #00CCFF;
border-right:1px solid #00CCFF;
float:left;
overflow:hidden;
padding:10px;
width:96%;
}
This should fix it.