This will change the font for the menu headers in your app into Indie Flower font.
Please read this article for information on using Google Fonts. If you are using a different font than the one in this code, please change the bolded areas of this code to be applicable for your app.
If you have already used the @import code string at the top of the CSS, you do not need to use it again when pasting in this code. Only use the succeeding code in that case.
@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
.menu-nav-header {
font-family: "Indie Flower";
}
Comments
Article is closed for comments.