Forum Discussion
Issue with Polish language formatting
I did a screen recording showing how you can change the font in the menu navigation. In this example, I use the font that is specified as my 'body' font Inter which overrides the default font called Lato in the 'classic' Rise theme. I also debug and fix the button stack block which loads the heading font by default, instead of my body font. I'll probably do a series of these videos on typography on Rise, there are a lot of issues to address for those with sophisticated branding requirements.
CSS used in the recording:
/* change sidebar menu to correct body font */
div.classic .nav-sidebar__outline li a {
font-family: var(--font-family-body);
font-weight: 400;
}
/* change butotn stack text and buttons to correct body font */
div.blocks-button__description,
a.blocks-button__button
{
font-family: var(--font-family-body);
font-weight: 400;
}