Prestashop - 更改移动菜单响应宽度

时间:2018-02-18 12:22:09

标签: twitter-bootstrap prestashop prestashop-1.7

我使用Prestashop 1.7.2.4开发电子商务网站。我想将默认的移动菜单宽度从767px覆盖到990px​​。我怎样才能做到这一点?

如果删除页脚javascripts,移动徽标就会消失。它是由脚本控制的吗?

1 个答案:

答案 0 :(得分:0)

我研究找到了解决方案。替换了 / prestashop / themes / [theme] /assets/js/theme.js 中的responsive.min_width值,并在 / prestashop / themes / [theme] / assets中注释了以下代码/css/theme.css

/*@media (max-width:767px){.hidden-sm-down{display:none!important}}*/

/*@media (min-width:768px){.hidden-md-up{display:none!important}}*/

/ prestashop / themes / [theme] /assets/css/custom.css

中添加自适应css代码
@media (max-width:990px){.hidden-sm-down{display:none!important}}
@media (min-width:991px){.hidden-md-up{display:none!important}}
@media (max-width:990px){#header .header-nav .top-logo{line-height:50px;vertical-align:middle;width:200px;margin:0 auto}}