An easy fix for this would be the change the z-index on .navigation-bar from 1 to 2 (or remove it altogether)
HTML Code:
.navigation-bar {
border: solid #dedede;
border-top-width: medium;
border-right-width: medium;
border-bottom-width: medium;
border-left-width: medium;
border-width: 1px 0;
box-shadow: 0 2px 4px -2px rgba(0,0,0,.2);
position: relative;
text-align: center;
z-index: 2;
}
Leave a comment: