如何使WordPress Bootstrap父菜单在桌面中可单击而在移动视图中不可单击?

时间:2018-12-17 11:29:03

标签: wordpress menu

任何人都可以解释如何使WordPress Bootstrap父菜单在桌面中可单击而在移动视图中不可单击吗?

1 个答案:

答案 0 :(得分:1)

只需创建响应式媒体查询。例如:

    @media only screen and (max-width: 600px) {
      
       .your-navigation-link a {
          cursor: default;
       } 
      
    }