How to change the current font of CSM portal content to custom font
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 06:26 AM - edited 10-18-2023 06:38 AM
Hi All,
I was able to change the font of the CSM Portal Page as: Create new CSS Include --> Put font URL --> Create new style sheet. The changes can be seen as below -
The highlighted yellow texts doesn't seem to change the font. Even when I click on any button (eg, request something) - the font inside has not changed. How can I change the whole font to the one I need.
PS: The CSS I have used is:
h1, h2, h3, h4, h5, h6 {
font-family: 'Alumni Sans Collegiate One';
}
Thanks,
SWAPNIL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 07:17 AM - edited 10-18-2023 07:18 AM
single css cannot work for all classes, for this particular one add below to your css include
.text-muted {
font-family: 'Alumni Sans Collegiate One'; // specific (class based)
}
OR
span{
font-family: 'Alumni Sans Collegiate One'; // more generic (tag based)
}
Please mark the answer correct/helpful accordingly.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 10:21 PM
@swapnil15 did this work for you?
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2023 11:01 AM
Hello Raghav,
I tried using the above but it didn't worked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2023 11:19 AM