Hi,
After the last update 09/01/2014 this CSS customization lose the action. The image flag in the secondary menu is not more vertical centered. :
/*Style Flag link secondary menu*/
#menu-item-6214 a {
position: relative;
top: -10px;
}
#menu-item-6214 a img{
position: relative;
top: 5px;
}
Other change was in the image attributes width=”20px” height=”20px” that have no more effect in secondary menu.
Do you have any suggestion about that?
THANK YOU.
Hi,
Issue resolved using this code:
/*Style Flag link secondary menu*/
#menu-item-6214 a {
position: relative !important;
top: -10px !important;
}
#menu-item-6214 a img{
position: relative !important;
top: 5px !important;
width: 20px !important;
height: 20px !important;
}
THANKS