Select/Remove Border

Topic summary

A user is trying to remove a specific border appearing on their homepage, but only on desktop view. The issue involves a double-hero grid element that’s creating an unwanted visual separator.

Proposed Solutions:

  • First approach: Add CSS code to app.css or base.css that targets the grid cell outline:

    • Navigate to Online Store → Theme → Edit code → Assets → app.css
    • Insert CSS to set outline to none with !important flag
  • Enhanced solution: A second responder suggests additional CSS to completely remove whitespace by unsetting the gap property on the double-hero grid element

Both solutions involve adding custom CSS code at the bottom of either the app.css or base.css file. The discussion remains open as the original poster hasn’t confirmed whether either solution resolved the issue.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

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

Hi @JhordanMSUITE

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;
}