- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2025 07:51 PM - edited 07-15-2025 07:57 PM
Hi, I want to remove the scrollbar in this HTML field. I have tested it on Firefox and it does not display the scrollbar, but it does display when using Chrome. I have tried to use CSS to remove but it does not work. Can you help me with DOM Manipulation code or sth that can resolve this issue?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2025 08:19 PM
@AlvissPham We can handle this using css.
normally with core JavaScript base - you can use below to handle by applying on respective class for that field respectively
scrollbar-width: none !important; /* Firefox */
-ms-overflow-style: none !important; /* IE */
display: none !important; /* Chrome */
✔️ If this solves your issue, please mark it as Correct.
✔️ If you found it helpful, please mark it as Helpful.
—
Shubham Jain
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2025 08:15 PM
Hi @AlvissPham ,
Looks like it's a bug and will be fixed in the Zurich release
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2025 08:19 PM
@AlvissPham We can handle this using css.
normally with core JavaScript base - you can use below to handle by applying on respective class for that field respectively
scrollbar-width: none !important; /* Firefox */
-ms-overflow-style: none !important; /* IE */
display: none !important; /* Chrome */
✔️ If this solves your issue, please mark it as Correct.
✔️ If you found it helpful, please mark it as Helpful.
—
Shubham Jain