remove the badge

top250

Member
like the tittle tells i want to remove the badge end stats complete for all members normal end premium members

want to insert a premium member icon of my self

i have searched for it but where able to remove parts of it not complete so there for i ask here





so hoop one of you can end will help me

top250
 

Basti

Administrator
Staff member
Copy table_top_row and table_top_row_premium over to your skins child folder ( to allow skin update replacing of files )
then open and edit the 2 files

this is the code you are lookiing for
Code:
        <div class="right badge"><a href="{$list_url}/{$url_helper_a}details{$url_helper_u}{$username}{$url_tail}">
 
        {$screenshot}<br />
 
        <img src="{$skins_url}/{$skin_name}/stats.png" alt="{$lng->table_stats}" height="21" width="21" /><br />{$lng->table_stats} <br /><img src="{$skins_url}/{$skin_name}/{$up_down}.png" alt="{$lng->up_down}" /></a>
 
        </div>
If you dont ant the screenshot, dont want the stats link and the movement image. simply delete the part completly
 

top250

Member
ok have tested it end yes all is removed

only 1 question remains -- what do i have to keep to show (img/strap3.png) for premium members

i now have removed all so now there is no pic for premium members
 

Basti

Administrator
Staff member
if you open table_top_row_premium.html
you have the code
Code:
<div class="right premium_badge"><a href="{$list_url}/{$url_helper_a}details{$url_helper_u}{$username}{$url_tail}">
        {$screenshot}<br />
        <img src="{$skins_url}/{$skin_name}/stats.png" alt="{$lng->table_stats}" height="21" width="21" /><br />{$lng->table_stats} <br /><img src="{$skins_url}/{$skin_name}/{$up_down}.png" alt="{$lng->up_down}" /></a></div>
now if you just want the premium badge in it, remove everything within the div

now go into user.css
and add

Code:
.premium_badge {
    background: transparent url('img/strap3.png') no-repeat;
    padding: 30px 0 0 0; 
}
The padding represent top, right, bottom, left. Use that to position your image a bit better
 

top250

Member
ok thank you i think i got it right now !!

top250
-----------------------------------------------


@Cajkan

i use firebug so have the same option as your chrome

i seen it but did not know exact what to remove there for i asked it here
 
Top