Forum Discussion
AprilDrennan-a3
5 years agoCommunity Member
change default font on Notes section?
Hi. Is there a way to change the default font for the Notes tab of the player? If so, how. Thanks in advance!
- 10 months ago
Hello all!
Good news! In Storyline 360 (Build 3.85.31840.0), you can now instantly update the formatting of all slide notes in your project.
From here, all you need to do is update Storyline 360 in your Articulate 360 desktop app!
If you run into any issues, please don't hesitate to reach out to our Support team in a support case.
odell
5 years agoCommunity Member
You can try accomplishing this by overriding the font in CSS.
Option 1 - Modify published output, look for a file named output.min.css and add css like this, modifying font and other properties as you wish:
.note-title {
font-family: 'Helvetica' !important;
font-size: large !important;
}
.note-content p span {
font-family: 'Helvetica' !important;
font-size: small !important;
}
Option 2 - Execute this javascript in your project somewhere (e.g., first slide), it will inject the style into the page when run. Perhaps easier to maintain than option 1.
var style = document.createElement('style');
style.textContent = `
.note-title {
font-family: 'Helvetica' !important;
font-size: large !important;
}
.note-content p span {
font-family: 'Helvetica' !important;
font-size: small !important;
}
`;
document.head.appendChild(style);
Notes:
- If Articulate changes their html / class names output in the future, you'll need to examine the html and update the css above accordingly.
- Above was tested for the 'classic' player, the class names might be different for the 'modern' player.
- If you need to find the class names you can do so by
- viewing the course in chrome/firefox/etc
- opening the notes & right clicking the notes content in chrome/firefox/etc
- selecting 'inspect element' -- basic html/css knowledge required