Home › Forums › CSS › [Solved] cant remove button border on button hover? › Reply To: [Solved] cant remove button border on button hover?
November 25, 2014 at 4:43 pm
#189218
Participant
@Paulie_D
On this pages tab navigation bar
http://bitfiu.com/groups/biology-bsc-1010/forum/
I tried applying your same method with :
.forum #object-nav ul li a {
padding: 14px 16px;
}
.forum #object-nav ul li {
padding: 0;
}
.forum #tabs-container .tabs-nav li a {
padding: 18px 35px;
transition: all 0.3s ease-in-out 0s;
}
.forum #tabs-container .tabs-nav li {
padding: 0;
}
.forum #object-nav ul li a:hover {
border-top: 3px solid #fff ;
}
.forum #object-nav {
background: none repeat scroll 0 0 #002d62;
border-top: 4px solid #c5960b;
}
But no matter if I add a z-index I still cant get the white top border on hover to over lap the standard gold top border, rather it just appears under the gold top border which is what I don’t want it to do. How can I get the white border on hover to overlap the gold top border?