I am trying to remove the arrow that appears on a drop down menu in Twitter Bootstrap framework. Has anyone figured a way of removing the arrows?
相关问题
- How to add a “active” class to a carousel first el
- Full Clickable Accordion in Bootstrap
- How to add Bootstrap 4 without Tether?
- Laravel overriding bootstrap template
- How to add Labels to Bootstrap dialog footer
相关文章
- Make Bootstrap tab Active on the bases of URL link
- Rails: Twitter Bootstrap Buttons when visited get
- Reduce spacing between rows
- How do use bootstrap tooltips with React?
- Need to design 8 boxes in two rows
- Trigger a Bootstrap .collapse('toggle') vi
- How to override Bootstrap mixin without modifying
- How can I ensure columns wrap equally in Twitter B
From: https://getbootstrap.com/2.3.2/components.html#buttonDropdowns
If you remove
<span class="caret"></span>
the arrow is not shown.Tried it using the dev. console in Chrome, and seems to work.
I've found the best solution is to add
overflow:hidden;
to.dropdown-menu
If you copy an existing Bootstrap dropdown example, the menu button tag looks something like this:
Removing the
dropdown-toggle
class removes the arrow (or caret):add
.dropdown-toggle-split
class in the tagThe only thing that worked for me was that I removed
class="caret"
if you are using bootstrap dropdown. Hope this work for you too.Removing the caret class from the link removes the arrow from the navigation bar,
Will remove the little tab from the drop down menu its self.