Dear Rune,
The problem is, the delays are set to the maximum of delay12(= 6 seconds)
If you wish to obtain more delay, you can add the delay class yourselves and add them to the animate classes.
for example, lets say you wish to add a delay of 15 seconds, then here's the css you add:
.delay30 {
-webkit-animation-delay: 15s;
-moz-animation-delay: 15s;
-ms-animation-delay: 15s;
-o-animation-delay: 15s;
animation-delay: 15s;
}
This css class can be added to your theme's / template's custom style.css or something similar.
If you could send me your website link, I can tell you more precisely which file to add it.
Finally, when you add the shortcode class, just replace the delay by the new delay class you just created.
For example, change: animated bounce
delay2 to animated bounce
delay30 in this case.
Please let me know if you have any more queries. Thanks for using Animate it