We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

How to change the current font of CSM portal content to custom font

swapnil15
Tera Contributor

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 - 

swapnil15_0-1697635496728.png

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.

4 REPLIES 4

Raghav Sharma24
Giga Patron

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.

@swapnil15 did this work for you?

Hello Raghav,

I tried using the above but it didn't worked.

Vanderlei
Mega Sage

Hi @swapnil15, you can try 

*{

font-family: 'Alumni Sans Collegiate One', sans-serif;

}