Underline ALL hyperlinks in Service Portal

Richard Thomas2
Tera Contributor

Hi all,

Is there a way to make hyper links in the Service Portal underlined? Or do you need edit the CSS on individual pages?

 

Thanks!

 

Richie

1 ACCEPTED SOLUTION

Hey Richard, 

 

Use the Application Navigator and Navigate to Service Portal > Themes. On that Theme page you'll see a list of all the Themes available for your instance. Select the Theme that you want to affect and include the code above in the CSS Variables textarea on the Theme page.

 

If you're looking for the Theme your Portal is using navigate to Service Portal > Portals and look for the Theme column. If it isn't available use the gear icon to Personalize your list.

 

Hope this helps, give a shout if it doesn't.

Robert Fauver
robert_fauver@cable.comcast.com or robertfauver@gmail.com

View solution in original post

5 REPLIES 5

Community Alums
Not applicable

I believe you can do this through CSS Variables on the sp_portal record for your portal, or through the CSS Variables on the theme chosen for your portal on the same record.

Thanks Dustin!

 

I'll have a look now.

 

Kind regards

 

Richie

fauverism
Kilo Sage
Kilo Sage

Targeting the a element in the parent element with CSS should work as well.

 

The code below will target links inside of the p and li elements. Hope this helps! 😀

p a,
li a {
text-decoration: underline;
}

 

Robert Fauver
robert_fauver@cable.comcast.com or robertfauver@gmail.com

Richard Thomas2
Tera Contributor

Hi Fauverism - thanks for your help with this. Where exactly do I need to drop the above code? Apologies - my portal knowledge isnt the best!