
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2023 06:10 AM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2023 08:55 AM
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@cable.comcast.com or robertfauver@gmail.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2023 06:13 AM
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.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2023 06:40 AM
Thanks Dustin!
I'll have a look now.
Kind regards
Richie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2023 04:29 PM
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@cable.comcast.com or robertfauver@gmail.com

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2023 02:54 AM - edited 02-02-2023 06:04 AM
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!