Search code examples
wordpressborder

How to remove border from table in WordPress


WordPress 4.1 running Zonya theme.

I want to know how to remove border from table in a wordpress page. Page link: http://www.worldmarketingsummitgroup.org/partners/


Solution

  • To your style.css add the following to the bottom of the file

    body:not(woocemmerce-page) .post-content table *
    {
    border:none!important;
    }
    

    This is because the current table styling gives each cell (td) a border of 1px.