(4 Jul, 2015, 4:55 pm)angeluz escribió: Lo del fondo puedes hacerlo Aquí o si lo quieres igual...
Código PHP:<?php
font-size: 12px;
background: -o-linear-gradient(left top, #0000000000000000000000 13%, #B2CC7A 100%);
background: -moz-linear-gradient(left top, #000000000000000000 13%, #B2CC7A 100%);
background: -webkit-linear-gradient(left top, #169EAB 13%, #169EAB 100%);
background: -ms-linear-gradient(left top, #D6EDA5 13%, #B2CC7A 100%);
padding: 10px;
text-align: center;
color: #FFFFFF;
margin: auto;
margin-left: 5px;
width: 97%;
border: 1px solid #169EAB;
font-family: didact gothic;
box-shadow: 0 1px rgba(255, 255, 255, 0.3) inset;
<?php
<script type="text/javascript">
jQuery.noConflict(); // Ésto se aplica para no tener ningún tipo de error con otro código jQuery
this.randomtip = function(){
var pause = 12000; // Acá definirán el retraso en el cambio de texto en milisegundos
var length = jQuery("#tips li").length;
var temp = -1;
this.getRan = function(){
var ran = Math.floor(Math.random()*length) + 1;
return ran;
};
this.show = function() {
var ran = getRan();
while (ran == temp) { // Ésto es para que no se repita el mismo texto por más aleatorio que fuere
ran = getRan();
};
temp = ran;
jQuery("#tips li").hide();
jQuery("#tips li:nth-child(" + ran + ")").fadeIn("slow");
};
show(); setInterval(show,pause);
};
jQuery(document).ready(function(){
randomtip();
});
</script>
(4 Jul, 2015, 5:41 pm)angeluz escribió: Solucionado...
Borraste jQuery que hacía funcionar los mensajes...
2 consejos:
1.- NO toques JAMÁS la plantilla headerinclude destruirás tu foro.
2.- Trata de ser más original y no copiar todo a otros foros.
Addio!!!