• Closed
  • Sapere Aude
    Spectator
    18.01.2018 at 02:01 #36250

    Hello,

    How can I force a table to have no borders on a single page/post?

    Thank you!

    vaibhav
    Spectator
    Posts: 287
    18.01.2018 at 07:04 #36253

    Hi,

    Add below custom css on your additional css area
    table {
    border: none;
    }

    Thank you

    Sapere Aude
    Spectator
    Posts: 75
    18.01.2018 at 11:54 #36254

    Hi,

    Thank you but this does it globally. Is there a way to do it for a single page or post?

    vaibhav
    Spectator
    Posts: 287
    18.01.2018 at 12:40 #36255

    Hi,

    Yes, you can add your single page or post id/class in above css like
    .postid-3545 table {
    border: none;
    }

    Thank you