So I used this method to add my arrow: bootstrap 3 arrow on dropdown menu
Works great on desktop, but the only problem is the arrow still appears in the mobile view when it collapses (<768px).
Demo: http://jsfiddle.net/nolabel/Mk9PD/
.navbar-nav>li>.dropdown-menu, ul.dropdown-menu {
border: 5px solid #7ed1e3;
border-radius: 10px;
}
.dropdown-menu:after {
position: absolute;
top: -16px;
left: 24%;
display: inline-block;
border-right: 11px solid transparent;
border-bottom: 11px solid #7ed1e3;
border-left: 11px solid transparent;
content: '';
}
.dropdown-menu:before {
position: absolute;
top: -17px;
left: 25%;
display: inline-block;
border-right: 12px solid transparent;
border-bottom: 12px solid #ccc;
border-left: 12px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
What is the best way to fix this?