Does WWB allow the use of fallback fonts?
Generally on web font-family will be set with fallbacks in case original font is not present - like this "helvetica - arial - sans-serif"
Can WWB set this up? If so, how?
Thanks
Alan
Fallback fonts?
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: Fallback fonts?
No, there is no option for fallback fonts.
However, in my opinion this is outdated because with @font-face (or Google Fonts) you can make sure the font work in all browsers.
However, in my opinion this is outdated because with @font-face (or Google Fonts) you can make sure the font work in all browsers.
- wwonderfull
-
- Posts: 1555
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Fallback fonts?
https://www.w3schools.com/CSSref/css_fo ... lbacks.php
fallback fonts are usually done like this:
Code: Select all
body {
font-family: "Open Sans", Arial;
}
for example:
Code: Select all
@font-face {
font-family: 'Open Sans'; /* Name of the font */
font-style: normal; /* Style of the font (e.g., normal, italic) */
font-weight: 400; /* Font weight (e.g., 400 = regular) */
src: local('Open Sans'), /* Use local copy if available */
url('https://yourdomain.com/fonts/open-sans-regular.woff2') format('woff2'),
url('https://yourdomain.com/fonts/open-sans-regular.woff') format('woff');
}