Please allow Rise headings to change from Bold

Apr 11, 2024

I am working on branding a Rise course, but the fact that headings cannot be changed from bold is making it impossible to brand it tightly. I saw another thread from four years ago requesting this, but it was closed. I'm hoping to draw attention to this need again.

1 Reply
Phil Foss

Mark, I cover this briefly in my Roadmap update. Best way is to set up a theme component and here's the css that changes color, size, and weight. As mentioned in the video, Rise forces 900 font-weight on the cover title which is insane. Most fonts don't even have that 800-900 weight, so it defaults to a regular bold (700) or so. But Rise is loading Montserrat with an 800 weight so that is what loads on the course title. Note the parent .classic class that only applies to the default theme called Rise.

.classic h1.cover__header-content-title {
color: white;
font-size: 50px !important;
font-weight: 400;
}