Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

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

RaghavSh
Mega 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.


Raghav
MVP 2023
LinkedIn

@swapnil15 did this work for you?


Raghav
MVP 2023
LinkedIn

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;

}