By default, the platform does not have this option. You can use the following CSS code. lease follow the steps below on how to change the font size and style:

1. Go to BuddyBoss > Theme Options
2. Under Custom Codes, enable CSS
3. Append the following:

/* Rule 1 */
.bb-type-list li, .lms-quiz-list li {
    font-size: 18px;
}

/* Rule 2 */
.lms-topic-sidebar-wrapper .bb-lms-title, .lms-topic-sidebar-wrapper .bb-lesson-title {
    font-size: 18px;
    font-family: "Times New Roman", Times, serif;
}

Note: You may replace the the font size of 18px and the font family of "Times New Roman", Times, serif with the font size and font family that you want to use. For more information you may refer to these third party articles: https://www.w3schools.com/css/css_font.asp and https://www.w3schools.com/css/css_font_size.asp


Screenshots


Without code


With code