Forum Discussion
CraigAgnew-6cde
3 years agoCommunity Member
How to export text entries to a Word document
Hi all.
I was looking for how to export Storyline text entries to Word here on E-Learning Heroes, but even though there has been a bit of discussion about it over the years, I couldn't find a solu...
CraigAgnew-6cde
3 years agoCommunity Member
Hi Julio
1. To change font-size to match what you see in the Word document, you can use pt instead of px. If you change the code to <h1 style='font-size:24pt; color:#B80003;'>
it should align. I probably should have used that in my earlier example rather than px, sorry. I'm just more used to px.
2. To add a line break, use the <br>
tag. So, a line of code would look like this: <p>Line one<br>Line two</p>
Hope that works :)