Cod:
/*
* © Copyright 2010-2012 Extrem-Tutorials.com - Toate drepturile rezervate.
* Change ".text()" on legend for footer !
*/
$(function() {
$('#i_whosonline + p em:contains("Legenda")').text('Echipa: ');
});
Cod:
em b:after {
content: ",";
}
em b {
font-size: 12px;
margin-right: 5px;
}
em {
font-size: 0px;
}
Cod:
/*
* Copyright 2010-2012 Extrem-Tutorials.com - Toate drepturile rezervate.
* Change ".text()" on legend for footer !
*/
$(function() {
$('em b:first').before('<span>Echipa: </span>');
});
Cod:
em b:after {
content: "]";
}
em b:before {
content: "[";
}
em b {
font-size: 12px;
margin-right: 5px;
}
em {
font-size: 0px;
}
.team {
font-size: 11px!important;
}
Cod:
/*
* Copyright 2010-2012 Extrem-Tutorials.com - Toate drepturile rezervate.
* Change ".text()" on legend for footer !
*/
$(function() {
$('em b:first').before('<span class="team">Echipa: </span>');
});