如何使prestashop blockcart保持在同一位置?

时间:2012-05-23 16:55:44

标签: css prestashop

我对Prestashop主题有这个问题...当我调整浏览器大小时,块卡的位置运行到底...所有浏览器似乎都有问题,除了firefox很好

请告诉我在css文件中添加什么代码,以避免当浏览器调整到较小的窗口时阻塞程序运行到底部。

right_column

我的网站:http://goo.gl/TU2t7

#right_column {

由于

1 个答案:

答案 0 :(得分:1)

只需将position属性设置为fixed:

#right_column {
    ...
    position:fixed;
}