I’m trying to remove the bottom border on the table on this page.
I added this to the css on my child theme…
/* 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?
Just:
.noborder tr { border:none; }
In your CSS file, use
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 oftr
.