Advanced PDF, custom Rich text field - How do I p...
# advancedpdf
a
Advanced PDF, custom Rich text field - How do I print in line spacing of 1.5 or double?
r
A bit of css maybe;
<p style="line-height: 1.5;">My paragraph goes here</p>
a
Cheers, will give it a crack!
👍🏼 1
r
Does not have to be inline..
<head>
<style type="text/css">
p.lineheight15 {line-height: 1.5;}
</style>
</head>
Then
<p class="lineheight15">My paragraph goes here</p>