Supervisor |
"> |
| Miko | |
|
Añade color a Global A. - Announcement - Sticky - 31/5/2013, 10:21 am
Hola, a todos En este tutorial te mostraré chicos cómo cambiar el color del texto de Global A - Anuncio y pegajoso con jQuery. Paso 1. Panel de Administración => Módulos => HTML y JAVASCRIPT => Gestión de los códigos Javascript => Crea una nueva javascript ---> nombre de lo que quieras y lo marca en todas las páginas. Aquí está el código para PhpBB3 Forum Version! - Código:
$(document).ready(function () { $('dd.dterm strong:contains("Sticky")').each(function () { $(this).css({ "color": "blue" }); }); });
$(document).ready(function () { $('dd.dterm strong:contains("Announcement")').each(function () { $(this).css({ 'color': 'red' }); }); });
$(document).ready(function () { $('dd.dterm strong:contains("Global announcement")').each(function () { $(this).css({ 'color': 'green' }); }); }); Aquí está el código para PunBB Forum Version! - Código:
$(document).ready(function () { $('.tcl strong:contains("Sticky")').each(function () { $(this).css({ 'color': 'blue' }); }); });
$(document).ready(function () { $('.tcl strong:contains("Announcement")').each(function () { $(this).css({ 'color': 'red' }); }); });
$(document).ready(function () { $('.tcl strong:contains("Global announcement")').each(function () { $(this).css({ 'color': 'green' }); }); }); Aquí está el código para PhpBB2 Forum Version! - Código:
$(document).ready(function () { $('strong:contains("Sticky")').each(function () { $(this).css({ "color": "blue" }); }); });
$(document).ready(function () { $('strong:contains("Announcement")').each(function () { $(this).css({ 'color': 'red' }); }); });
$(document).ready(function () { $('strong:contains("Global announcement")').each(function () { $(this).css({ 'color': 'green' }); }); }); Aquí está el código para Invision Forum Version! - Código:
$(document).ready(function () { $('strong:contains("Sticky")').each(function () { $(this).css({ "color": "blue" }); }); });
$(document).ready(function () { $('strong:contains("Announcement")').each(function () { $(this).css({ 'color': 'red' }); }); });
$(document).ready(function () { $('strong:contains("Global announcement")').each(function () { $(this).css({ 'color': 'green' }); }); }); Todo los créditos son para Matti.
| Permisos de este foro: | No puedes responder a temas en este foro.
Código [IMG] está Activado Código HTML está Activado
|
|
|