I\'m using twitter bootstrap for some web app I\'m forced to do (I\'m not a web developer) and I can\'t find a way to disable the row lines for tables.
As you can see fr
Add this to your main CSS:
table td { border-top: none !important; }
Use this for newer versions of bootstrap:
.table th, .table td { border-top: none !important; }