Remove bottom border from table

I’m trying to remove the bottom border on the table on this page.

I added this to the css on my child theme…

Read More
/* Remove Border from Bottom of Table */
.noborder table{border-collapse: separate !important; }

Also made the table have the correct class.

Yet it still grabs the css from the twitter bootstrap.

Any ideas?

Related posts

Leave a Reply

2 comments

  1. In your CSS file, use

    tr { border-bottom: none !important; }
    

    Or if you don’t want to remove the bottom border from each tr tag, place a class on that one and then target the class instead of tr.