Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Problem In drop down problem and CSS3 animation Re: Problem In drop down problem and CSS3 animation

#129225
Paulie_D
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