javascripttoastr

Can I suppress the 'i' symbol in an information toast?


Is it possible to suppress the 'i' symbol in an information toast in tostr?


Solution

  • Hide the background image with your CSS

    body #toast-container>.toast-info {
      background-image: none;
    }