Whenever you hover over the Galerija
, a submenu pops up. However, there seems to be an issue where the right side of the submenu twitches or resizes for about 0.1 seconds initially.
If anyone has any insight on this problem, I would greatly appreciate it. I'm hesitant to share the CSS code as I'm not sure where the problem lies. Perhaps someone could diagnose the issue by inspecting the elements or viewing the source code.
For reference, here is the link to the page:
In case the code is necessary, the section below may be relevant, but I haven't been able to resolve the issue:
/* Dropdowns */
.sf-menu li li {
background: #c18484;
margin-left:6px;
margin-top:8px;
border: 1px solid white;
border-radius:3px;
}
/* Sub Menu Item Links */
.sf-menu li li a {
border-color: #c48484;
color: #fff;
font-weight:bold;
}
/* Sub Menu Hovering */
.sf-menu li li:hover,
.sf-menu li li.sfHover,
.sf-menu li li a:focus,
.sf-menu li li a:hover,
.sf-menu li li a:active {
background-color: #a07272;
color: #fff;
border-radius:3px;
}