- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2019 08:27 AM
When editing a knowledge aritcle hyperlinks are showing highlighted and underlined.
See last sentence 'Video guidance is available here'
When clicking Related Links > View Aritcle they display only highlighted.
But in Service Portal view they are neither highlighted or underlined, but are clickable as a hyperlink.
Is there any reason for this, or can anyone shed any light on this?
Solved! Go to Solution.
- Labels:
-
Service Portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2019 07:12 AM
There seems to be a change when looking at some templates in the Portal vs. the KB or Service Catalog. My bet would be that there is some css that is removing the text decoration from the links, like
text-decoration: none;
and you want it to be
color: blue;
text-decoration: underline;
You can apply this style inline in your HTML to ensure the links display the way you want. This is all just a guess, but I think this post may shed a bit of light on the topic for you:
https://community.servicenow.com/community?id=community_blog&sys_id=9c4daee5dbd0dbc01dcaf3231f96193a
I hope it helps!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2019 07:12 AM
There seems to be a change when looking at some templates in the Portal vs. the KB or Service Catalog. My bet would be that there is some css that is removing the text decoration from the links, like
text-decoration: none;
and you want it to be
color: blue;
text-decoration: underline;
You can apply this style inline in your HTML to ensure the links display the way you want. This is all just a guess, but I think this post may shed a bit of light on the topic for you:
https://community.servicenow.com/community?id=community_blog&sys_id=9c4daee5dbd0dbc01dcaf3231f96193a
I hope it helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2019 01:46 AM
Thanks Brandon