Kiwi browser change font
Hello, I want to change font in yomichan mobile kiwi browser. I changed custom css font to "Yu Mincho" but it's not working. My guess is I need to somehow "install" the font in OS for it to work just like on windows. How can I do that?
That has nothing to do with yomichan, just google your issue whether that is android or iOS, or change the custom css font to an already installed font and see if it doesn't work, then we'll try help you
Ok. lets say I downloaded .ttf font file and placed it somewhere on my phone. How can I make yomichan use that font file using custom css?
body {
font-family: 'YOUR-FONT-NAME-HERE', 'Segoe UI', Tahoma, sans-serif;
}
(The 'Segoe UI', Tahoma, sans-serif part would be the fallbacks, using Yomichan's current settings.)
That being said, I'm not sure how Chromium browsers detect fonts, or if it's even possible to install custom fonts on mobile devices at all. Using CSS @import or @font-face with external URLS (e.g. from https://fonts.google.com/) is not supported, so unfortunately that option wouldn't work.
Using CSS
@importor@font-facewith external URLS (e.g. from https://fonts.google.com/) is not supported
Font file will be stored locally, still no hope?
If the browser can detect it as a system font, @import and @font-face wouldn't even be necessary, but again I have no idea if the browser supports that.