- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-22-2019 02:06 AM
Hi Experts,
I need to remove the border of the widget and border of the content. I used the .panel{
box-shadow:none;
border-color: transparent;
} and removed the widget border. I want to remove the border of the content when the list is separated by gray line
I need script to remove the arrow marked border, it is not the widget border. I need to retain the gray line in between the records, only the outline should be removed.
Solved! Go to Solution.
- Labels:
-
Service Portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-22-2019 02:29 AM
This is how I just override the border in Page Specific CSS. As mentioned, you could also do this on the Widget instance. If it's for your whole portal, you could do this on the Theme CSS.
And obviously, if no border wanted: instead of my example with border 5px solid red, just use border: 0px
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-22-2019 02:25 AM
Hi there,
Do you mean this border?
Also notice how I changed just this border, and not the inside borders. You could add page specific CSS (or if it's only that widget, widget instance CSS), to override the border setting.
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā11-25-2021 02:48 AM
Hi Mark,
Ran into your solution just today. It works thanks!
But can you also point out how to change the inside borders?
I now have
.b {
border: 2px solid #008CD3;
}
I tried with border-left, border-right etc, but it does not work
Tx!
Tom

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-22-2019 02:29 AM
This is how I just override the border in Page Specific CSS. As mentioned, you could also do this on the Widget instance. If it's for your whole portal, you could do this on the Theme CSS.
And obviously, if no border wanted: instead of my example with border 5px solid red, just use border: 0px
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-22-2019 03:14 AM