Slider for listing categories

Is there a way to make slider for categories, or display 2 columns in mobile responsive mode.?

Currently there’s no slider layout option for categories, but setting 2 columns on mobile may be possible with a CSS snippet, let me know if this works for you. This may also require further customizations if elements don’t fit in 2 columns.

please provide css snippet for 2 columns

Please try this CSS snippet

@media screen and (max-width: 47.99em){
	.hp-listing-categories .hp-grid__item {
	-ms-flex-preferred-size: 50%;
   flex-basis: 50%;
   max-width: 50%;
	}	
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.