Setting the color of Table "interior" horizontal and vertical lines

Hello Comunity,

I am trying to set the color of the interior horizontal and vertical lines of a table. The table is added to the product description by using the Shopify Table icon in (Admin > Products) In an attempt to accomplish this I added the following code to my (Custom.CSS) file, but It only sets the border color, I need something to set the interior lines, not the border… Any thoughts?

Set URL: LuckyinDesign.com

PW:liegla

/Set table cell border color/
.table-responsive.dynamic {
border-left: 1px solid #05878a;
border-right: 1px solid #05878a;
border-top: 1px solid #05878a;
border-bottom: 1px solid #05878a;
}

1 Like

@Lucky07

oh sorry for that issue can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme-product.min.css ->paste below code at the bottom of the file.
table td, table th {
    border-top-color: #05878a;
    border-left-color: #05878a;
}

Hello @KetanKumar

This solution was successful. Thank you for your help!

1 Like

@Lucky07

its my pleasure to help us