Get an access to all 94 items designed and developed by AS Designing team plus all the future items which will be released over the course of your club subscription. Price starting from $59.00
I'm having trouble in the top menu of my website https://www.ososrivas.com.
When displaying the last sub menu on the right, it starts to flash when you mouse over it.
Any idea what could be the problem?
Regards
In the tmpl.header.css file please find class (it should be on line 148):
#header .row1 #topmenu ul.menu li
and add: height: 40px; so it will looks like the following:
#header .row1 #topmenu ul.menu li {
background: none repeat scroll 0 0 transparent;
display: none;
float: left;
list-style: none outside none;
margin: 0;
overflow: visible;
padding: 0 20px;
position: relative;
z-index: 100;
height: 40px;
}
Regards, AS Team.