Home › Forums › WoodMart support forum › How To Add a Vertical Scrolling In Select Product › Reply To: How To Add a Vertical Scrolling In Select Product
December 27, 2018 at 1:58 pm
#98657
Artem Temos
Keymaster
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