Reputation: 13
I have this style for the opencart category menu:
#menu .dropdown-inner a {
border-bottom: 1px solid #1f90bb;
}
And I am trying to remove the bottom border:
#menu.dropdown-inner a li:last-child {
border-bottom: none;
}
But it's not working. Please help!
Upvotes: 0
Views: 1173
Reputation: 1284
Change your second style so that the a is inside the li:
.... li:last-child a {
border-bottom: none !important;
}
Upvotes: 1