Codigo javascript:
Código:
<script>
//<![CDATA[
var hoy = new Date(),
hora = hoy.getHours();
if (hora >= 7 && hora <= 14) {
document.write('<img src="http://i.imgur.com/7C736.png" />');
}
else if (hora >= 14 && hora <= 20) {
document.write('<img src="http://i.imgur.com/y61nh.png" />');
}
else if (hora >= 20 && hora <= 7) {
document.write('<img src="http://i.imgur.com/uFaCc.png" />');
}
//]]>
</script>
Codigo CSS del blog sin modificar:
Código:
#body-wrapper{margin:0px;padding:0px;background:url(http://i.imgur.com/iTn7Z.png) left top repeat-x;}
Y asi es como yo lo deje y no funcionó:
Código:
Desde ya, gracias! #body-wrapper{margin:0px;padding:0px;background:url(<script>
//<![CDATA[
var hoy = new Date(),
hora = hoy.getHours();
if (hora >= 7 && hora <= 14) {
document.write('<img src="http://i.imgur.com/7C736.png" />');
}
else if (hora >= 14 && hora <= 20) {
document.write('<img src="http://i.imgur.com/y61nh.png" />');
}
else if (hora >= 20 && hora <= 7) {
document.write('<img src="http://i.imgur.com/uFaCc.png" />');
}
//]]>
</script>) left top repeat-x;}


