How to remove 'Close Modal' text from SP Modal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2023 03:36 AM
Hi All,
I want to remove that 'Close Modal' text from SP Modal.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-21-2025 02:34 AM
Does anyone succeeded in removing the closemodal text. If yes plz help me here.Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-30-2025 03:16 AM
Hi @venky18,
Please take a look at the image below, where you can see how the close button is defined:
When you move the mouse above the button X, an additional HTTP element (DIV) is added:
This is the tooltip which appears when the button becomes focused. So what you need to do, to write a CSS selector and make this HTTP component hidden.
In my solution I added the following CSS definition to the corresponding page.
.modal-header > .tooltip {
display: none !important;
}
In your case the selector may be different.
I hope this information helps.