Hi @Lucas001 ,
I have not done it but I'm sure we can do it. Have you tried to upload your font file (e.g., .ttf, .woff, .woff2) in under Web Files? Then in Portal theme or CSS customization, define a @font-face rule to specify the font-family and the URL/relative path of the font files. Here's an example:
@font-face {
font-family: 'MyCustomFont';
src: url('/webfiles/customfont.woff2') format('woff2'),
url('/webfiles/customfont.woff') format('woff'),
url('/webfiles/customfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
You can apply the custom font-family to specific elements or globally in your Power Portals theme or CSS customization. For example:
body {
font-family: 'MyCustomFont', Arial, sans-serif;
}
Thanks,
Saud
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.