在WordPress WooCommerce Shop中创建固定侧边栏(不滚动)

时间:2014-11-02 18:59:28

标签: css wordpress woocommerce sidebar

我在这里设置了一个WooCommerce网站:http://museiam.ca/shop/

我试图让左侧边栏固定,这样它就不会滚动并停留在固定位置。基本上,只有产品包装才会滚动。我还想如果菜单浮动在页面中间附近(垂直),那么它不会靠近页面的顶部或底部。

有关如何执行此操作的任何输入都表示赞赏。我试过以下但没有成功:

.widget woocommerce widget_product_categories {
position:fixed !important;
}

谢谢大家阅读。

1 个答案:

答案 0 :(得分:1)

试试这个

.widget_product_categories {
  position: fixed;
  width: 180px; // to make sure, the container keep it's width
}

在Chrome中测试并使用