• Resolved Mago7891

    (@mago7891)


    Hello.
    Is it possible to insert the lines between a column and the other, to make the most accurate layout?

    How can I do it ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Yes, for that, you can use “Custom CSS” code like

    .tablepress-id-1 th,
    .tablepress-id-1 td {
      border: 1px solid #cccccc;
    }

    Regards,
    Tobias

    Thread Starter Mago7891

    (@mago7891)

    Thank you very much Tobias.
    By the way, on the top there is no top-line on the first line, like as a square without the top cover.

    I tried with this command:
    .tablepress tbody tr:first-child td {
    border-top: 1px;
    border-top-width: 1px;
    border-top-color: #ccc;
    }

    but it doesn’t work.

    What can I do ?

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    it should be sufficient to add the !important flag, like

    .tablepress-id-1 th,
    .tablepress-id-1 td {
      border: 1px solid #cccccc !important;
    }

    Regards,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Lines in Columns’ is closed to new replies.