标签: wordpress menu
任何人都可以解释如何使WordPress Bootstrap父菜单在桌面中可单击而在移动视图中不可单击吗?
答案 0 :(得分:1)
只需创建响应式媒体查询。例如:
@media only screen and (max-width: 600px) { .your-navigation-link a { cursor: default; } }