I guess I found solution.
I saw this code in using Chrome source viewer
in catalog/view/theme/Theme_NAME/stylesheet/stylesheet.css
Code: Select all
@media (max-width: 991px)
.custom-products .product-grid:nth-child(2n+1) {
clear: both;
I changed it only
(2n+1) to
(1n)
Code: Select all
@media (max-width: 991px)
.custom-products .product-grid:nth-child(1n) {
clear: both;
So, Instead 2 columns now only one column is left with products, but the second column was still there, but was not usable, just blank space.
Then again using Chrome I found this code located in /catalog/view/javascript/bootstrap/css/bootstrap.min.css
I decided not to change it, because I didin't know what it will effect in website. Instead I added this code in catalog/view/theme/Theme_NAME/stylesheet/stylesheet.css:
And it worked. Now, when surfing webiste using mobile phone, I see only one column with products in full width.
But still I think it's bad solution.
P.S. Sorry for bad grammar