Home Forums WoodMart support forum Break point for mobile Reply To: Break point for mobile

#207234

Hello,

Please add this code to the Theme Settings > Custom CSS > Global:

@media (max-width: 1240px) {
	
	body .whb-visible-lg{
		display: none;
	}
	
	body .whb-hidden-lg {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	
	.whb-row.whb-hidden-mobile {
		display: none;
	}
}

Best Regards