• Resolved flyingfnk

    (@flyingfnk)


    Hi! I’m having an issue with the tables on a darker background, where the upper and left border is still showing, even after I have selected to remove all borders on the display settings

    Any help would be appreciated, thanks!

    Example:

    • This topic was modified 1 year, 4 months ago by flyingfnk.

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

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

    (@wpdatatables)

    Hello.
    Can you please try adding this custom CSS?

    If you wish to completely remove borders from this Simple table, cells, and headers :

    table, td, th {
    border: none !important;
    }

    You can add this to the main plugin settings/Custom JS and CSS/Custom CSS,
    and all your tables will not have any borders.
    If you just wish to ‘target’ a specific Simple Table,
    use the Table ID like this :

    #wpdtSimpleTable-2 {
        border : none !important;
    }

    Just check to add your Table ID, on that page it is a Simple Table ID 2.
    You can just repeat this line of code in Custom CSS if you need to add it to more Table ID’s.

    Or you can add this CSS directly to the WP Page where you have the table.
    Custom code needs to be applied to the page where the booking form is. Depending on what you’re using (Gutenberg blocks, or some page builder), adding the CSS or JS can be done in a few different ways.?

    If you need help with adding custom CSS to the page, please take a look at?this article.

    Kind regards.

    Thread Starter flyingfnk

    (@flyingfnk)

    I tried the second solution and it worked. Thank you very much!

    Plugin Author wpDataTables

    (@wpdatatables)

    Hello.
    We are delighted to hear that this has been resolved. Thank you for letting us know. Anything else that we could assist with, please don’t hesitate to create new posts.

    Have a great day! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Borders visible on dark background’ is closed to new replies.