I am customizing wordpress twentyeleven theme. Here is the link for the reference . Here you can see when you hover on menu it will show the dropdown . But you can see there is a gap in between parent menu(company) and sub menu. So how to clear that? Any help and suggestions will be highly appreciable.
I am customizing wordpress twentyeleven theme. Here is the link for the reference .
Share
This is because you have a margin of 4px on the dropdown.
You need to change
margin: 4px;on#access a {, which sets the margin all around the<a>tag, including underneath it. Change it tomargin: 4px 4px 0 4px;which puts the margin on all sides except the bottomUpdated demo here