Enable CSS for Bootstrap alerts, then change your toastClass and iconClasses values ββin your toastr settings:
toastr.options = { toastClass: 'alert', iconClasses: { error: 'alert-error', info: 'alert-info', success: 'alert-success', warning: 'alert-warning' } },
Then in toastr CSS, remove the dropshadow from #toast-container > div so that it looks like this:
#toast-container > div { width: 300px; }
You can leave the add-on if you want, or add it to your own CSS file instead of editing toastr (perhaps best of all, just make sure yours is loaded after that).
frostyterrier Feb 25 '13 at 12:48
source share