Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/csharp-4.0/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Twitter bootstrap 引导响应菜单_Twitter Bootstrap - Fatal编程技术网

Twitter bootstrap 引导响应菜单

Twitter bootstrap 引导响应菜单,twitter-bootstrap,Twitter Bootstrap,我正在使用这个wordpress主题,它是用bootstrap构建的, 它可以在ipad和iphone上折叠菜单,但我希望菜单只在iphone上折叠,而不是在ipad上折叠。你知道怎么做吗 我在哪里可以编辑?它与css或js或两者都相关吗?Bootstrap与@media查询一起预加载,因此您需要在core Bootstrap.css文件中修改它们 在css文件中按ctrl-f并查找以下内容 //横向移动和向下移动 @介质(最大宽度:480px){…} //横向手机到纵向平板电脑 @介质(最大

我正在使用这个wordpress主题,它是用bootstrap构建的,
它可以在ipad和iphone上折叠菜单,但我希望菜单只在iphone上折叠,而不是在ipad上折叠。你知道怎么做吗


我在哪里可以编辑?它与css或js或两者都相关吗?

Bootstrap与@media查询一起预加载,因此您需要在core Bootstrap.css文件中修改它们

在css文件中按ctrl-f并查找以下内容

//横向移动和向下移动
@介质(最大宽度:480px){…}
//横向手机到纵向平板电脑
@介质(最大宽度:768px){…}
//从纵向平板电脑到横向和桌面
@介质(最小宽度:768px)和(最大宽度:980px){…}
//大桌面

@媒体(最小宽度:1200px){..}
这里有人问同样的问题,看看吧