To remove the first row of the Quantity Breaks grid, please follow these steps:
- From Shopify's admin, select Apps.
- Select Quantity Breaks.
- Select Display Settings.
- Select Yes for the "Override Standard Styling" option.
- Under "Additional CSS", enter this code:
.shappify_qb_grid tbody tr:first-of-type { display:none !important; } or try .shappify_qb_grid tbody tr:nth-child(1) { display: none; }
Note: If this doesn't work for you, try adding this code to the theme's main CSS file. This file is found in the path: Online Store -> Actions -> Edit code under "Assets" and will be titled something like theme.scss.liquid.
- Select Save.
That's it!