[Wordpress] How to remove the inner lines in table?

3 replies
  • WEB DESIGN
  • |
I created a table in a WP page, but there are some unexpected lines between the cells. Please check the attached file for your clarification. Thanks in advance.
#lines #remove #table #wordpress
  • Profile picture of the author ernestrategos
    Inside your Wordpress Admin area, after clicking the Editor option inside the Appearance sub-menu, add the following snippet of code anywhere inside your theme's CSS file:

    Code:
    table tr, table td { border: none !important;  }
    Navigate through your site to check nothing is broken, especially your tables; if they are then erase the line and let me know, if everything is fine then that's it! problem solved.
    Signature
    {{ DiscussionBoard.errors[8596786].message }}
    • Profile picture of the author baokhau
      Originally Posted by ernestrategos View Post

      Inside your Wordpress Admin area, after clicking the Editor option inside the Appearance sub-menu, add the following snippet of code anywhere inside your theme's CSS file:

      Code:
      table tr, table td { border: none !important;  }
      Navigate through your site to check nothing is broken, especially your tables; if it is then erase the line and let me know, if everything is fine then that's it! problem solved.
      Originally Posted by ICTBoost View Post

      Locate your CSS-file:
      table tr, table td { border: none !important; }
      The issue was solve. Thanks a lot
      {{ DiscussionBoard.errors[8598202].message }}
  • Profile picture of the author ICTBoost
    Locate your CSS-file:
    table tr, table td { border: none !important; }
    {{ DiscussionBoard.errors[8597024].message }}

Trending Topics