How to get rid of a single line in a grid

I created a grid on this page of my website after following the steps from this tutorial. For some reason, there is a black line that showed up under the first row. How can I get rid of it? Thanks in advance.

Hi @mckenziedaigle

I checked and saw that this CSS causes the error

Now, you can add this css code at the end of the theme.scss file.

tr:first-child td:after {

display: none !important;

}

If you find our suggestion useful, please let me know by giving me a like or marking it as a solution. Also, feel free to reply if you need any further help.

@mckenziedaigle

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/timber.scss.liquid->paste below code at the bottom of the file.
tr:first-child th:after, tr:first-child td:after {
    display: none !important;
}