The styling on my endorsements isn't consistent on the documents

Written By Jessica Moore (Super Administrator)

Updated at January 29th, 2026

The styling on my endorsements isn't consistent on the documents

My endorsements are built using HTML

 

My endorsements aren't built using HTML

 
 

Have you added any styling to your documents?

Yes

 

No

 
 

Check your CSS allows for your endorsements to follow the styling on your documents. 

You may find that your CSS styling will help standardize all of your endorsements into the same font-size or family.

<p><style type="text/css">
ul.underwriting li .endorsementtitle { font-weight: bold !
important;}span.endorsementidentifier { font-weight: bold !important;}
div {font-size:9pt !important;}
table tr td {font-size:9pt !important;}
table tr td div {font-size:9pt !important; }
table tr td span {font-size:9pt !important; }
.underwriting .endorsementtitle {font-size:9pt; strong !important}
.underwriting .endorsementbody p {font-size:9pt !important; }
.underwriting-none {font-size:9pt !important; }
</style></p>
<table width="100%" cellspacing="0" cellpadding="1" border="0">
<tbody>
<tr>
<td width="100%"><strong>Endorsements:</strong></td>
</tr>
<tr>
<td width="100%">&nbsp;</td>
</tr>
<tr>
<td width="100%">
<div>[Underwriting.Memorandum]</div>
</td>
</tr>
</tbody>
</table>

 

 

Only minimal editing can be done in the endorsements editor e.g. bolding, underlining & lists. Lists can also be created here but must be added in table format. Anything further, such as font-size, font-family or colouring will need to be done using CSS in the document editor using the format similar to the CSS on the previous page. 

Try this:

<p><style type="text/css">
ul.underwriting li .endorsementtitle { font-weight: bold !
important;}span.endorsementidentifier { font-weight: bold !important;}
div {font-size:9pt !important;}
table tr td {font-size:9pt !important;}
table tr td div {font-size:9pt !important; }
table tr td span {font-size:9pt !important; }
.underwriting .endorsementtitle {font-size:9pt; strong !important}
.underwriting .endorsementbody p {font-size:9pt !important; }
.underwriting-none {font-size:9pt !important; }
</style></p>
<table width="100%" cellspacing="0" cellpadding="1" border="0">
<tbody>
<tr>
<td width="100%"><strong>Endorsements:</strong></td>
</tr>
<tr>
<td width="100%">&nbsp;</td>
</tr>
<tr>
<td width="100%">
<div>[Underwriting.Memorandum]</div>
</td>
</tr>
</tbody>
</table>
 

Your endorsements will need to be built using basic HTML tables. This will help them follow the formatting of your documents.

Only minimal editing can be done in the endorsements editor e.g. bolding, underlining & lists. Lists can also be created here but must be added in table format. Anything further, such as font-size, font-family or colouring will need to be done using CSS in the document editor using the format similar to the CSS on the previous page.

<table>
	<tbody>
		<tr>
			<td>Annual inspection mandatory.</td>
			<td></td>
		</tr>
	</tbody>
</table>