Like "Please login or register to vote" and so on.
That's right, it does fade in ... I was thinking it tweened the height.
rpflo
2009-10-13 02:09:57
A:
1) CSS - make sure you can do the effect by editing the CSS source before you try to animate anything
2) Use mootools or jquery or something else to animate it on whatever event you want like so:
// mootools
$('flash_notice').tween('height',0);
// jquery
$('#flash_notice').animate({'height':0}, 500);
rpflo
2009-10-13 02:09:14