vote button

top250

Member
hello

i am trying to copy over the green vote button of the members detail page over to the main ranking page but i am stuck
i hoop one of u can point me in the right direction
howto.PNG

wantit.PNG


thanks in advance !!!
 
And what you are stuck with? What you tried?
Should work by just copying the html into that place.

Code:
<a href="{$list_url}/index.php?a=in&u={$username}" class="stats_vote" rel="nofollow">VOTE</a>
 
yes this helped i was clearly not looking in the right directions

i have manged to make 3 buttons now - vote-stats-visit

i want these to show in the upper right corner of the listing but i do not know how to get the aligned
like to see them next of each other

oneline.PNG
 
The css for the button is display: block;
means they all go on their own line, out of the head try pasting in your user.css
Code:
a.stats_vote {
    display: inline-block;
}

Other than that, a url would be good to easier provide help
 
{$unq_in_0_daily} {$unq_out_0_daily}
Where 0 is today/this week, this month. Goes from 0-9, 0 as said today, 1 yesterday etc
daily, is daily, weekly or monthly
 
Look at your table_top_row_premium.html
you have 1 to many closing div ( </div> )
 
Back
Top