Hi guys,
I want to try with different fonts for mobile devices, please could you advise which files to touch to try these changes?. I see that in mobile devices the Fonts for Post, Fórums, menus, etc are a little bit small.
Thanks
overall header.html
Code: Select all
<link href="https://fonts.googleapis.com/css?family=Fjalla+One&display=swap" rel="stylesheet">
common.css
and look for line 28,Code: Select all
h2 {
/* Forum header titles */
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-weight: normal;
font-size: 2em;
margin: 0.8em 0 0.2em 0;
}
Code: Select all
@media (max-width: 700px) {
/* Fjalla One responsive topic title */
h2 {
font-family: 'Fjalla One', sans-serif;
}
}
responsive.css
and look for line 121, which is: @media (max-width: 700px) {
Code: Select all
/* Fjalla One responsive topic title
----------------------------------------*/
h2 {
font-family: 'Fjalla One', sans-serif;
}
Code: Select all
@media (max-width: 700px) {
.responsive-hide { display: none !important; }
.responsive-show { display: block !important; }
.responsive-show-inline { display: inline !important; }
.responsive-show-inline-block { display: inline-block !important; }
/* Fjalla One responsive topic title
----------------------------------------*/
h2 {
font-family: 'Fjalla One', sans-serif;
}
/* Content wrappers
----------------------------------------*/
html {
height: auto;
}