调整水平滑动菜单的宽度

时间:2014-10-18 01:35:47

标签: html css menu

我正在使用一个内置水平幻灯片菜单的模板,但它滑得太远(根据我的口味)。我用开发工具检查了它,我可以从650px改变宽度(400px看起来不错),但它留下了以前菜单的灰色区域。

我错过了什么?

http://www.cultcitychi.com/

1 个答案:

答案 0 :(得分:1)

请在样式表的底部添加以下代码,我已对其进行了测试,并且运行正常:

@media screen and (min-width: 768px) {

    .sidebar-open .site {
        left: -400px !important;
    }

    .slide-menu, .single .slide-menu {
        width: 400px !important;
    }

}