3
This is not jquery but simple javascript still it should do the trick.
in your theme css add (you can add more of course backgroundcolor, fontsize, borderstyle etc)
#startup_message {
width:100%;
border:3px double #000;
padding:20px;
margin:30px auto;
text-align:justify;
}
in your theme header insert
<script type="text/javascript">
window.onload=function() {
setTimeout('document.getElementById("startup_message").style.display="none"',5000);
return;
}
script>
And in top of yout theme make a div with id = hide
<div id="startup_message">
Xoops is the best!! Xoops is the best!! Xoops is the best!! Xoops is the best!! Xoops is the best!! Xoops is the best!! Xoops is the best!! Xoops is the best!! Xoops is the best!!
div>
Programming is like sex:
One mistake and you have to support it for the rest of your life.