Search code examples
javascripthtmlcsstwitter-bootstrapcaret

Remove bootstrap dropdown caret


I'm working on my personal portfolio with bootstrap and the navigation dropdown has a caret as you can see at http://portfolio.tomvervoort.net.

The caret next to portfolio is ok but when you click on portfolio the dropdown also has a white caret on top. Does anyone knows how to remove this one?


Solution

  • Your caret is inside .dropdown-menu:after. So, write like this:

    .navbar .dropdown-menu:after{
     display:none;
    }