Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi All,
I need help selecting a border on my homepage. Not sure why this is so difficult for me. I only want to remove this border on desktop.
https://2d26b3.myshopify.com/
PW: reishi
Follow this:
1. Go to Online Store->Theme->Edit code
2. Asset->app.css -> paste bellow code in bottom of file
.hero-double > x-grid > x-cell{ outline: none !important;}
Best regard
Hi,
You can add this in addition to the code provided by the other person, it will completely remove the whitespace. The following code will do what you want. You can place the code at the bottom of the app.css or base.css file.
.hero-double x-grid {
gap: unset !important;
}