Hello, I need assistance removing the 1st and 2nd cell within a section. I have a code that I’ve written to add into the theme liquid file, but not sure what I am missing. I only targeted the 1st cell to test/delete, but nothing is happening. Any help?
https://2d26b3.myshopify.com/collections/all
pw: reishi
Hi @JhordanMSUITE
This is David at SalesHunterThemes.
Try to use this CSS code to hide the element as you want.
.products .intro x-grid x-cell:not(last-child) {
display: none;
}
@David_SHT Your solution removed the entire section, so I mixed your code with a little of my own.
section.intro x-grid > x-cell:not(last-child){
display: none;
}
This gives the desired look I want, but the “Price” filter and CTA’s disappeared. Any fix around this?