How can I reduce the space between the price and the product toggle?

This is for computer and mobile, although the space on mobile is drastically worse imo.

To get this i’ll be needing your store url, so I can access the exact selector to get it done other than suggesting anyone that does it.

@argnarb can you please share your website link?

Hi, its www.moosh-moosh.com

Hi, the store url is moosh-moosh.com

Step to Adjust Tablet Slider Margin on Collection Pages

  1. Open your theme file: template-collection.css.

  2. Locate the selector for the tablet slider:

.collection .slider.slider--tablet {
  /* existing styles */
}

  1. Add (or update) the following rule to adjust the bottom spacing:
.collection .slider.slider--tablet {
  margin-bottom: -1.8rem;
}

This will reduce the extra spacing below the slider on tablet view, keeping your layout tight and consistent with the design.

Please add this code to Custom CSS in theme settings

@media (max-width: 989px) {
    .collection .slider.slider--tablet {
        margin-bottom: -24px !important;
    }
}


Best regards,
Dan from Ryviu: Product Reviews App

Be careful with that, as some product cards are higher and because it’s a slider, code keeps them all same height.

Will keep that in mind, thanks