dezytube,
так выкиньте всё что связано с кнопкой
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="http://tympanus.net/Development/NotificationStyles/css/demo.css">
<link rel="stylesheet" type="text/css" href="http://tympanus.net/Development/NotificationStyles/css/ns-style-bar.css">
<link rel="stylesheet" type="text/css" href="http://tympanus.net/Development/NotificationStyles/css/ns-default.css">
<style type="text/css">
body{
background-color: rgb(0, 128, 128);
}
</style>
</head>
<body>
<script src="http://tympanus.net/Development/NotificationStyles/js/modernizr.custom.js"></script>
<script src="http://tympanus.net/Development/NotificationStyles/js/classie.js"></script>
<script src="http://tympanus.net/Development/NotificationStyles/js/notificationFx.js"></script>
<script>
(function() {
// create the notification
var notification = new NotificationFx({
message : '<span class="icon icon-settings"></span><p>Your preferences have been saved successfully. See all your settings in your <a href="#">profile overview</a>.</p>',
layout : 'bar',
effect : 'exploader',
ttl : 9000000,
type : 'notice', // notice, warning or error
onClose : function() {
}
});
// show the notification
notification.show();
})();
</script>
</body>
</html>