Skip to content
Discussion options

You must be logged in to vote

Yes, you can do this by making a custom theme.

First, make a CSS code note and give it the label #appTheme=name_your_theme_here. Then you write rules to change how headers look. In case you aren't familiar with CSS, here's an example you can change around:

/* Set font family, size, and color of H2 only */
.note-detail h2 { 
    font-family: 'Arial';
    font-size: 18px;
    color: black;
}

/* Change font for multiple headers at once */
.note-detail h3, 
.note-detail h4, 
.note-detail h5 { 
    font-family: 'Times New Roman';
}

/* Make H4 bold, italic and underlined*/
.note-detail h4 { 
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}

/* Give H2 a big und…

Replies: 3 comments 6 replies

Comment options

You must be logged in to vote
3 replies
@Pilotwings-64
Comment options

@Mangiola
Comment options

@Pilotwings-64
Comment options

Answer selected by Pilotwings-64
Comment options

You must be logged in to vote
3 replies
@Pilotwings-64
Comment options

@zadam
Comment options

@Pilotwings-64
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants