I want to create a table of contacts without borders. I can't figure out how to get rid of the border. If I tweak the html code to <table class="table table-borderless" there are still horizontal lines. How can I remove them?
I did try changing to <table class="table table-striped" but the email addresses of the contacts in the shaded rows had a white background and I can't figure out how to make that background match the shading of the row.
Thanks for any suggestions on these.
You have to remove the "table-borderless" class altogether. It would look like this:
<table class="table" style="whatever styles you want">
<tr>
<th></th>
</tr>
<tr>
<td></td>
</tr>
</table>