Is it possible to suppress the 'i' symbol in an information toast in tostr?
Asked
Active
Viewed 31 times
1 Answers
0
Hide the background image with your CSS
body #toast-container>.toast-info {
background-image: none;
}

epascarello
- 204,599
- 20
- 195
- 236
-
This works well. however, there seems to be an empty space. So, if I have "I my message", it shows " my message" instead of displaying, "my message" – AAA Feb 14 '23 at 18:53
-
So inspect the element further and figure out how to remove the margin or padding that is there. – epascarello Feb 14 '23 at 18:57