• Closed
  • Sapere Aude
    Spectator
    January 18, 2018 at 2:01 am #36250

    Hello,

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

    Thank you!

    vaibhav
    Spectator
    Posts: 287
    January 18, 2018 at 7:04 am #36253

    Hi,

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

    Thank you

    Sapere Aude
    Spectator
    Posts: 75
    January 18, 2018 at 11:54 am #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
    January 18, 2018 at 12:40 pm #36255

    Hi,

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

    Thank you