Drop-Down Menu not working on mobile devices

前端 未结 7 1704
广开言路
广开言路 2020-12-29 08:40

The most recent version of twitter bootstrap (2.3.2) does seem to have a problem with drop down menus on mobile devices.

When you click on a drop-down menu item afte

7条回答
  •  时光取名叫无心
    2020-12-29 09:01

    I have fixed this issue.

    My code is here

       
    

    Add following style in your CSS fie.

    @media (max-width: 767px) { 
    .dropdown.custom:hover .dropdown-menu {
      visibility: visible;
      display:block;
      border-radius:0;
    
    }
    }
    

    Visit: http://www.s4auto.co.za/

提交回复
热议问题