Welcome! To use this support forum, please Login or Join Today!
You are here → Home :: Forum Home :: WordPress Themes Support :: Presstige WordPress Theme :: Thread
Table Border Removal
How do I remove table borders ?
In your style{x}.css under /* tables */ you can remove any reference to border property.
In the event you don’t want to remove borders form all tables, you could add the CSS below to your stylesheet and then give your table a classname of “nostyle”.
table.nostyle, table.nostyle tr, table.nostyle td, table.nostyle tr td { background:none; border: none; }