A quick tip for any of you that want to have the box fade out instead of it constantly being there.
1. Open
jquery.jgrowl.js found in jscripts/tw7s_notifications.
2. Find...
Line 304
Code:
startup: function(e) {
3. Below add...
Code:
/* BEGIN FADE */
var fade_out = function() {
$("#jGrowl").fadeOut (XXX);
}
setTimeout(fade_out, 5000);
/* END FADE */
Replacing the XXX with a number such as 600 will determine how long it takes for the notification box to fade out. And changing the number 5000 will change how long the box stays visible for before disappearing. 5000 = 5 Seconds.
4. Re-upload the file to your forum.