REMOVE BUNDLE CARD ON BUNDLE BUILDER ON MOBILE ONLY

If the bundle card on the mobile version of the bundle builder isn't to your liking, you have the option to disable it. To do this, you need to access the code editor. Once there, look for the custom.css file. Open it and insert the following code snippet:

/* 
   Hide card on bundle builder for mobile only
*/
@media (max-width: 991px) {
  #bundle-card { display: none !important; }
}

This code will ensure that the bundle card is hidden when your site is viewed on mobile devices with a screen width of up to 991 pixels.

From

to

Last updated