Tagged: menu icon
Hi, i have a flag icon in the main menu bar.
Could you please help me how to center this flag.
This is the code i used:
#top .main_menu .menu li.englisch {
display: block;
width: 38px;
background: url(link to image) no-repeat 0 6px;
text-indent: 9999px;
}
Hey simonac!
Please add following code to Quick CSS as well
#top .main_menu .menu li.englisch {
background-position-x: 50%;
}
Cheers!
Yigit
Hi Yigit,
this had no effect.
Hey!
Please do not forget to flush browser cache after applying custom CSS codes. It does seem to be working fine on my end – http://i.imgur.com/UzTlAcT.png
Regards,
Yigit
Strange, because i did flush the cache of coure and now also checked it on another pc. Both still with the flag on the left…
Hi!
Please use following one instead
#top .main_menu .menu li.englisch {
background-position: 50%;
}
Regards,
Yigit
That worked.
Thanks Yigit!