Viewing 5 replies - 1 through 5 (of 5 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    It is possible.

    Which theme have you?
    There’s some CSS in style.css line 1359 that is applying borders to your table headings and table data;

    .art-article th, .art-article td {
     ...
     border: solid 1px #8099B3;
     ...
    }

    To override this adding of borders and if your theme is not custom built, you should use either a Child Theme or Custom CSS plugin. If you edit the theme’s original files, your changes will be lost if you update the theme.

    Within your Child Theme stylesheet, or Custom CSS plugin’s allocated area, try adding;

    .art-article th, .art-article td {
     border: none;
    }

    Thread Starter osama.alani

    (@osamaalani)

    [ 2,290 lines of code moderated, that’s just way too much. For that many lines of code please use pastebin.com instead. ]

    Thread Starter osama.alani

    (@osamaalani)

    okay done..

    Many thanks

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Thanks Andrew, I’m removing the modlook tag for this one.

    osama.alani Please do not post that much code here again. If you feel the need to do so, please use pastebin.com instead.

    Thread Starter osama.alani

    (@osamaalani)

    thanks for letting me know , i had no idea about that wesbite now going to use it

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘create table with no lines’ is closed to new replies.