Anyone tell me the Freemarker code to change the c...
# advancedpdf
r
Anyone tell me the Freemarker code to change the color of text? I've tried about every combination of codes I can think of or find on Google and I still can't get it to change. My latest attempt that doesn't work is <td colspan="8" style="font-size: 50px; color: #FF0000;"> if that's helpful.
d
I've had success using both the
style
attribute:
<span style="color:red">some red text</span>
And also a css style:
td.tdnote {color: red;}
with
<td class="tdnote">
interesting that slack is automatically putting in a colour swatch for that colour hex code (it's under "additional options" in "Preferences">"Messages & Media" btw) #FF0000 #00FF00 #0000FF Although it doesn't recognise 3-digit hex colour notation (like "#F00")
r
That did it, thanks @David B