
Originally Posted by
nicksab
Thank you dbltoe
i tried a few thing in css as well like padding and margin but no luck.
It is too bad as all my product have attributes but i guess a bit of side scrolling can't hurt.

I too am not that familiar with Bootstrap but I think you could shift the attributes to the left and remove their list style for small screens, like this
Code:
@media (max-width:???px) {
.productsCell-attributes ul {
padding-left: 0px;
list-style: none;
}
}
That almost does it for resolutions down to 360px width, to remove scrolling completely at that width play about with the padding of .productsCell
(I'm assuming that the productsCell class isn't used elsewhere - worth checking)