i created a table in a text element
<table class="hours-table">
<tbody>
<tr>
<td>Monday</td>
<td>
<p>8:30 am to 4:30 pm</p>
</td>
</tr>
<tr>
<td>Tuesday</td>
<td>1:00 pm to 8:00 pm</td>
</tr>
<tr>
<td>Wednesday</td>
<td>
<p>9:00 am to 5:00 pm</p>
</td>
</tr>
<tr>
<td>Thursday</td>
<td>10:00 am to 6:00 pm</td>
</tr>
<tr >
<td>Friday</td>
<td>
<p>8:00 am to 2:00 pm</p>
</td>
</tr>
</tbody>
</table>
But i want my table to look like this,
i tried giving bg color to the alternative rows, but its not showing any updates on the site, but if i use the same code in some other editor its working fine. How can i achieve this, you have any suggestions?