- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 05:55 PM
I would like to hide the "Action" button on the knowledge portal screen.
Is this possible?
I would like to prevent knowledge record creation from the portal screen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 09:43 PM
Hi
Go to the Knowledge Bases browse widget -> Press Ctrl+right click on the widget -> Go to instance in page editor
Paste it to CSS section and save it
.kb-browse-section .vertical-divider{
border-right: none !important;
}
.kb-browse-section .kb-action-btns{
display: none !important;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 09:43 PM
Hi
Go to the Knowledge Bases browse widget -> Press Ctrl+right click on the widget -> Go to instance in page editor
Paste it to CSS section and save it
.kb-browse-section .vertical-divider{
border-right: none !important;
}
.kb-browse-section .kb-action-btns{
display: none !important;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 09:52 PM
It's completely gone! Thank you so much!