Here on this specific page, I am looking to showcase the SPECIAL and RECOMMENDED sections together in a single line with horizontal scrolling.
This is my current CSS:
.box-product {
width: 100%;
overflow: auto;
}
I have attempted implementing it like this:
.box-product {
width: 100%;
height: 320px;
overflow-x: scroll;
overflow-y: hidden;
}
However, this method has not successfully enabled the horizontal scroll; the vertical scroll still appears.