• Resolved Marteens

    (@marteens)


    Hi.

    How can I remove the black line in the top of my tables? I have tried using CSS, but so far no luck. Using the inspect-tool in Google Chrome, I can remove the line changing this peace of code from 1px to 0px:

    .supsystic-tables-wrap .fit-content table {
        float: left;
        border-bottom: 1px solid #111 !important;
    }

    I tried copying this code into the CSS-ediotor in the plugin, and changing from 1px to 0px, but that does not work. Any ideas?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Marteens

    (@marteens)

    I tried this code from the documentation:

    #supsystic-table-1 thead th, thead td {
    border-bottom: none;
    }

    Unfortunately, this is not working for me neither :/

    Plugin Support Support Ole

    (@trsupsys)

    Hello, @marteens
    Thank you for contacting us!
    Use this CSS in page’s with tables.

    table.dataTable thead th, table.dataTable thead td {
    border: 1px solid rgba(0,0,0,.1) !important;
    }

    Works fine.

    Best wishes,
    Ole

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove black line in top of the table (below caption)’ is closed to new replies.