Home Forums WoodMart support forum HOW TO CHANGE THE MAXIMUM SCREEN WIDTH TO GO FROM DESKTOP VERSION TO MOBILE VERS Reply To: HOW TO CHANGE THE MAXIMUM SCREEN WIDTH TO GO FROM DESKTOP VERSION TO MOBILE VERS

#229952

Hello,

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

@media (max-width: 1080px) {
  .whb-header .whb-hidden-desktop,
  .whb-header .whb-hidden-lg {
	  display: flex;
  }
  .whb-header .whb-hidden-mobile,
  .whb-header .whb-visible-lg {
    display: none;
  }
}

Best Regards