- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2023 06:41 AM
Hi,
Is there any possibility to change the font for entire Portal. Let me know the best way to change the font if possible.
Thanks & Regards
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2023 07:45 AM
- Open the portal record [sp_portal]
- Open the theme record of the portal [sp_theme]
- In 'CSS Includes' related list, create a new record
- Source: Stylesheet
- In Stylesheet reference field, click on the look up, and create a new stylesheet record [sp_css] from from within the pop-up window.
- Define the font as needed using normal CSS.
- If you are using custom fonts and uploading them, then you will have to reference the the attachments, e.g.:
@font-face{ font-family:'MyCustomFont'; src: url('/sys_attachment.do?sys_id=3274af4a8793f010c11d85170cbb3506'); font-weight: normal; font-style: normal; } html * { font-family:'MyCustomFont'; }​
- If you are using custom fonts and uploading them, then you will have to reference the the attachments, e.g.:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2023 07:45 AM
- Open the portal record [sp_portal]
- Open the theme record of the portal [sp_theme]
- In 'CSS Includes' related list, create a new record
- Source: Stylesheet
- In Stylesheet reference field, click on the look up, and create a new stylesheet record [sp_css] from from within the pop-up window.
- Define the font as needed using normal CSS.
- If you are using custom fonts and uploading them, then you will have to reference the the attachments, e.g.:
@font-face{ font-family:'MyCustomFont'; src: url('/sys_attachment.do?sys_id=3274af4a8793f010c11d85170cbb3506'); font-weight: normal; font-style: normal; } html * { font-family:'MyCustomFont'; }​
- If you are using custom fonts and uploading them, then you will have to reference the the attachments, e.g.:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2024 05:36 AM
Hi @Laszlo Balla
any idea how can i access this styles in UI page or UI macro or any other places.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2024 02:05 AM
Hi @hreddy
You can access Portal styles using the sysif of the style using sysid of the style
Please refer all your list of style in the table "sp_css.LIST"
<head>
<link rel="stylesheet" type="text/css" href="sys_id_Of_style.spcssdbx">
</link>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2024 02:14 AM
Thanks @Harish Murikina for the help, it is indeed working and custom fonts are reelecting now