How To Add a Vertical Scrolling In Select Product
-
Hello,
I have Variables product(Custom Attributes) with 3 combo box,
The problem is that in mobile when you select the product, you don’t see all
variable combo box and the “Add” button.
How to add a Vertical Scrolling to this page, in order to show that the client should
scroll down to pick all combo boxes?
please see the attached image.
Thanks
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings
.product-element-top ::-webkit-scrollbar {
width: 5px;
}
.product-element-top ::-webkit-scrollbar-track {
background-color: rgba(0,0,0,.05);
}
.product-element-top ::-webkit-scrollbar-thumb {
background-color: rgba(0,0,0,.12);
}
Regards