Hello,
I want to change the header font of the PDF.
To implement the change:
The stylesheet is implemented into the PDF Space Export Header section. The stylesheet is as below:
<table width=100%>
<tr>
<td width=100%>
<img style="float:left" src="download/attachments/7676432/Sterlit%20logo_4.png" alter="header image" />
</td>
<td width=100% >
<!--span style="float:right;font-family: arial;font-size: 16px;font-weight: bold;">User Guide EliteAAA-V6.10.0</span-->
<span style="float:right; font-family: Times New Roman,Calibri,Helvetica,sans-serif;font-size:16px;font-weight:bold;color:black">EliteAAA-V6.10.0</span>
</td>
</tr>
</table
In span tag of HTML, there are multiple fonts configured, but it only applies Calibri.
The CSS where body section is implemented is as below:
body {
margin: 0;
padding: 0;
font-family: ConfluenceInstalledFont, Helvetica, Arial, sans-serif;
}
I have questions regarding the same:
- Is it mandatory to configure all the fonts? Because I have tried by implementing multiple font styles, but it does not consider any font.
- Why can't we configure single font-style?