I got the replace to work, but it removed the other formatting from my table.
I am not an expert with HTML. Can you advise where I should insert the replace(body........ expression.
See the format of my HTML table below.
<style>
table {
border: 1px solid #1C6EA4;
background-color: #ffffff;
width: 100%;
text-align: left;
border-collapse: collapse;
}
table td, table th {
border: 1px solid #AAAAAA;
padding: 10px 10px;
}
table tbody td {
font-size: 15px;
}
table thead {
background: #813f98;
border-bottom: 2px solid #444444;
}
table thead th {
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
table thead th:first-child {
border-left: none;
}
</style>