
Hi there.
On a website i build i got the fonts for the header as external fonts defined in the css.
This works fine. The only thing i would like to do is to re-define the fontsize per mobile view.
now i got this in my additional css:
@font-face {
font-family: 'seawebfont';
src: url('seawebfont.eot');
src: url('seawebfont.eot?#iefix') format('embedded-opentype'),
url('seawebfont.woff2') format('woff2'),
url('seawebfont.woff') format('woff'),
url('seawebfont.ttf') format('truetype'),
url('seawebfont.svg#searegular') format('svg');
font-weight: normal;
font-style: normal;
}
h1 {
color: #000000;
font-family: 'seawebfont';
font-size:38px;
}
h2 {
color: #000000;
font-family: 'seawebfont';
font-size:38px;
}
h3 {
color: #000000;
font-family: 'seawebfont';
font-size:38px;
}
Now i know that with google fonts or the helvetica fonts in themler you have to go to the responsive view en then you can re-scale them. That is not the case with the additional fonts.
How does it work then?
Thank you
Hi there. On a website i build i got the fonts for the header as external fonts defined in the css. This works fine. The only thing i would like to do is to re-define the fontsize per mobile view. now i got this in my additional css: @font-face { font-family: 'seawebfont'; src: url('seawebfont.eot'); src: url('seawebfont.eot?#iefix') format('embedded-opentype'), url('seawebfont.woff2') format('woff2'), url('seawebfont.woff') format('woff'), url('seawebfont.ttf') format('truetype'), url('seawebfont.svg#searegular') format('svg'); font-weight: normal; font-style: normal; } h1 { color: #000000; font-family: 'seawebfont'; font-size:38px; } h2 { color: #000000; font-family: 'seawebfont'; font-size:38px; } h3 { color: #000000; font-family: 'seawebfont'; font-size:38px; } Now i know that with google fonts or the helvetica fonts in themler you have to go to the responsive view en then you can re-scale them. That is not the case with the additional fonts. How does it work then? Thank you