Unable to remove white border line from the header on Service Portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2023 11:39 PM
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2023 12:07 AM
Are you using the stock header?
In the portal settings -> Theme (La Jolla) -> Header.
The OOB header is "Stock Header"
Technically in there you could add a couple of lines in the CSS section
.navbar-brand:focus{
box-shadow: none;
}
a:focus{
box-shadow:none;
}
You can play around with these, but basically the box-shadow is coming from somewhere and if you can find the CSS where this has been set, you can directly prevent it there. I didn't snoop around too much, so my CSS is just a workaround and having that a:focus will affect other links as well.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2023 04:00 PM
Thanks Joni9, it works.