Home › Forums › CSS › Problem In drop down problem and CSS3 animation › Re: Problem In drop down problem and CSS3 animation
March 21, 2013 at 1:17 pm
#129225
Member
The width of the anchor links is being affected by your selector here
ul#mainmenu-menu li.menu-item a
It’s automatically adding 20px of horizontal padding to ALL anchor links.
You might be able to tweak it by targeting the **sub-menu** links with
.sub-menu > li > a
etc