1. Dodaj do global.css:
.reputation {
font-weight: bold;
padding: 3px 8px;
display: inline-block;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
border: 1px solid rgba(0, 0, 0, 0.35);
background: #568200 url(images/light.png ) repeat-x center top;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.posters {
font-weight: bold;
padding: 3px 8px;
display: inline-block;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
border: 1px solid rgba(0, 0, 0, 0.35);
background: #444 url(http://cs-wakacje.pl/public/style_images/wt_blue/light.png ) repeat-x center top;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: #fff
}
2. Ten plik wgraj do images na Twoim serwerze FTP:
http://cs-wakacje.pl/public/style_images.../light.png (lewy górny róg
)
3. Zamień tamte szablony na te:
ReputationRow:
<tr><td class="trow1">
<img src="{$tpl['avatar']}" alt="" style="float: left;width: {$tpl['avatar_width']}px;margin-right: 5px;"/>
<span style="margin-top: 7px;float: left;">{$tpl['profilelink']}</span>
<span style="float: right;margin-right: 5px;margin-top: 7px;" class="reputation">{$tpl['reputation']}</span>
</td></tr>
PostersRow:
<tr><td class="trow1">
<img src="{$tpl['avatar']}" alt="" style="float: left;width: {$tpl['avatar_width']}px;margin-right: 5px;"/>
<span style="margin-top: 7px;float: left;">{$tpl['profilelink']}</span>
<span style="float: right;margin-right: 5px;margin-top: 7px;" class="posters">{$tpl['postnum']}</span>
</td></tr>