Or even better: Wich font is where used (Menu, Article, Sidebar etc.)?
In forward: Thank you for your help.
1 Answers
Hi Tifa,
To change the font for the navigations bar. You can add the following code to the template.css file.
@import url(http://fonts.googleapis.com/css?family=Roboto);
you need to find the following code and replace this code:
.navbar .nav li a {
font-family: "NovecentowideBookBold",Georgia,"Times New Roman",Times,serif;
}
With new code:
.navbar .nav li a {
font-family: 'Roboto', sans-serif;
}
Change all the font-family in file template.css with the following font-family or any fon-family you want to use
font-family: 'Roboto', sans-serif;
Hope this helps
It did help. Thank you very much. 🙂
Please login or Register to submit your answer