How can we remove this using UI Builder?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 12:18 AM
How can we remove this using UI Builder?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 12:46 AM
For removing scroll bar you could try adding css in the card. I believe you have a some container component, where you have this report via iframe or some other component. You can also try to resize container so it fits content.
*{
overflow: hidden;
//overflow-y: hidden; /* Hide vertical scrollbar */
// overflow-x: hidden; /* Hide horizontal scrollbar */
}
Do give a thumbsup.
Regards,
Akshay