• Resolved kfranck

    (@kfranck)


    Hi:

    1.) I have a table that I want to keep the horizontal borders, but remove the vertical rules. The code below removes all borders. Suggestions to fix?

    2.) What CSS code can I use to provide paddling between the rows? It is the Presidential Race table on the right of the page. Website is https://bladelectionresults.com

    Here is the code I use to remove all the borders:

    .tablepress-id-9,
    .tablepress-id-9 tr,
    .tablepress-id-9 tbody td,
    .tablepress-id-9 thead th,
    .tablepress-id-9 tfoot th {
    border: none !important;
    }

    Thanks,
    kfranck

Viewing 1 replies (of 1 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    To only remove vertical borders, you could use the code

    .tablepress-id-9,
    .tablepress-id-9 tr,
    .tablepress-id-9 tbody td,
    .tablepress-id-9 thead th,
    .tablepress-id-9 tfoot th {
      border-left: none !important;
      border-right: none !important;
    }

    instead of what you have now.

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Remove vertical borders, keep horizontal borders’ is closed to new replies.