Tables


Tables

The Hubtel Theme extensively uses Bootstrap's .table to style its tables. Please refer to their documentation for guidelines.

Bootstrap Tables

Simple Table

Cell 1 Cell 2 Cell 3 Cell 4
Cell 1 Cell 2 Cell 3 Cell 4


 <table class="table-custom table">
      <tr>
         <th>Cell 1</th>
         <th>Cell 1</th>
         <th>Cell 1</th>
         <th>Cell 1</th>
      </tr>
      <tr>
         <td>Cell 1</th>
         <td>Cell 1</th>
         <td>Cell 1</th>
         <td>Cell 1</th>
      </tr>
 </table>

Simple Table with Hover Rows


Cell 1 Cell 2 Cell 3 Cell 4
Cell 1 Cell 2 Cell 3 Cell 4
 <table class="table-custom table table-hover">
          <tr>
             <th>Cell 1</th>
             <th>Cell 1</th>
             <th>Cell 1</th>
             <th>Cell 1</th>
          </tr>
          <tr>
             <td>Cell 1</th>
             <td>Cell 1</th>
             <td>Cell 1</th>
             <td>Cell 1</th>
          </tr>
     </table>


For more options and methods DataTables Documentation