Vote Button On Stats.

pauline

Member
Hi All,

I'm having trouble with my vote image on the rankings page. It keeps moving on chrome eg. when I first log in the button is where it is in the attached screenshot if I go to say link code or any other page when I come back to the rankings page it where it should be again. As I mentioned in my last post about how clever I was (or maybe not) I just replaced the stats.png with my image.

I'd really like it next to the members banner in premium inside, any suggestions how I can move and make it stay where I want it please. It stays in almost the right place on Firefox but not everyone uses FF.
snip 1.PNG

Would adding the badges back and adding my image instead of badge1.png 2.png, etc work to keep my vote image higher and stopp it moving ?and if so what code would I have to remove or change from premium_top_row.php and top_row.php to remove the stats.png image.?

<img src="{$skins_url}/{$skin_name}/lte1.png" alt="{$lng->table_stats}" height="60" width="70" /><br />{$lng->table_stats} <br /><img src="{$skins_url}/{$skin_name}/{$up_down}.png" alt="{$lng->up_down}" /></a>
</div>

Thanks in advance,

Pauline
 

Mark

Administrator
Staff member
that button is controlled with absolute positioning in screen.css. You can simply remove this part from that link:
Code:
class="stats_vote"
then it will position wherever you put it. You can then move the


<a href="{$list_url}/index.php?a=in&u={$username}" rel="nofollow">VOTE</a>
Wherever you want it to show.
 
Top