Care este clasa pentru a face legenda de pe forum pentru phpBB3?
Multumesc celor care ma ajuta.
Multumesc celor care ma ajuta.
Cod:
ul#picture_legend {
background-position: center;
background-repeat: no-repeat;
background-image: url('LINK IMAGINE');
text-align: center;
padding: 24px 0;}
Cod:
$(function() {
$("em").html($("em").html().split("[").join(""));
$("em").html($("em").html().split("]").join(""));
jQuery('em a').each(function() {
var color = $(this).css("color");
$(this).wrap("<span style='background-color:" + color + ";'/>");
$(this).addClass('group');
});
});
Cod:
em{font-style: normal;}
em a.group{
font-family: arial;
opacity: 0.6;
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
-ms-filter: "alpha(opacity=60)";
filter:alpha(opacity=60);
color: white !important;
text-shadow: 0 0 3px black;}
em span{
margin: 0 5px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.8) inset;
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.8) inset;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.8) inset;
padding: 4px 8px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-bottom: 1px solid white;
border-right: 1px solid white;}