Twitter Bootstrap 3 dropdown menu disappears when used with prototype.js

前端 未结 8 2109
长发绾君心
长发绾君心 2020-12-07 22:28

I have an issue when using bootstrap 3 & prototype.js together on a magento website.

Basically if you click on the dropdown menu (Our Products) & then click

8条回答
  •  情歌与酒
    2020-12-07 23:29

    Very late to the party: if you don't feel like having extra scripts running, you can add a simple CSS override to prevent it from getting hidden.

    .dropdown {
        display: inherit !important;
    }
    

    Generally the use of !important in CSS is advised against, but I think this counts as an acceptable use in my opinion.

提交回复
热议问题