Hi
I just discovered another error I am unable to fix.
On my FAQ page the table I created with the code below is correct on the Desktop and android phone, however on a Apple device the font changes. Do you know how I can ensure the font stays the same on both systems?
Many Thanks
code used directly into FAQ page using content block option:
<style type="text/css">
.tg {border-collapse:collapse;border-spacing:0;}
.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
overflow:hidden;padding:10px 5px;word-break:normal;}
.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
.tg .tg-6rvr{border-color:#cca1f7;font-family:"Comic Sans MS", cursive, sans-serif !important;;text-align:left;vertical-align:top}
.tg .tg-ituh{background-color:#cca1f7;border-color:#333333;font-family:"Comic Sans MS", cursive, sans-serif !important;;
font-weight:bold;text-align:left;vertical-align:top}
.tg .tg-lyg7{background-color:#cca1f7;border-color:#333333;font-family:"Comic Sans MS", cursive, sans-serif !important;;
font-weight:bold;text-align:center;vertical-align:top}
.tg .tg-0j8n{border-color:#cca1f7;font-family:"Comic Sans MS", cursive, sans-serif !important;;text-align:center;vertical-align:top}
</style>
<table class="tg">
<thead>
<tr>
<th class="tg-ituh">Region</th>
<th class="tg-lyg7">Price</th>
<th class="tg-lyg7">Courier </th>
<th class="tg-lyg7">Free Shipping</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tg-6rvr">UK </td>
<td class="tg-0j8n">£2.50</td>
<td class="tg-0j8n">Royal Mail 1st Class Signed for (no tracking)</td>
<td class="tg-0j8n">Order Value £30</td>
</tr>
<tr>
<td class="tg-6rvr">Europe & Ireland </td>
<td class="tg-0j8n">£8.50</td>
<td class="tg-0j8n">Royal Mail 1st Class Track & Sign</td>
<td class="tg-0j8n"> Order Value £30</td>
</tr>
<tr>
<td class="tg-6rvr">Worldwide</td>
<td class="tg-0j8n"> £10.00</td>
<td class="tg-0j8n">Royal Mail International Track & Sign </td>
<td class="tg-0j8n"> Order Value £30</td>
</tr>
</tbody>
</table>