使物体变粘似乎不起作用

Making object sticky does not seem to work

我一直在尝试让图像贴在右侧,而人们可以在左侧滚动艺术家姓名,但可能行不通,因为左侧已经滚动了。这是我正在尝试的页面:

https://aarongalleries.com/test-page/

我的位置:粘在我的 css 中:

div#hot-random_image-2 {
position: -webkit-sticky !important;
position: sticky !important;
top: 50px !important;
}

谢谢。

试试下面的代码

#random-image-2 {
    width: 365px;                    /* Set proper width */
    height: auto;
    position: fixed;                 /* Add instated of sticky */
    /* top: 50px !important;  */     /* Remove this line */
}