Home Forums WoodMart support forum Show Smartphone Header for Tablet Reply To: Show Smartphone Header for Tablet

#283884

Hello,

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

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

The mobile header would appear on width 1027px

Best Regards