Plugin Help

polarx1

New Member
I am new to Visiolist just have a question.

I want to add something for 1st 2nd and 3rd in toplist how would I make it so only 1st 2nd and 3rd have something on there table but others do not have anything but 1st 2nd and 3rd all have a different image on it.
 

cajkan

Active Member
Hello polarx1,
Please follow this steps :
Go to Admin Panel --> Skins & Categories --> Select your skin - ( default Parabola )
Click Edit Child

On the sidebar find and edit:
  • table_top_row
  • table_top_row_premium
Also you can do this via FTP:
Go to Skin folder --> Make sure you have Child folder -->
Copy and paste table_top_row.html --> table_top_row_premium.html

Notice: Whenever you make changes, make sure you use child folder.
 

proxydesign

Visiolist-Fan
That works. But I don't think you got a answer for how it can be done for only the three first. Well, to activate that you need to go into adminpanel.
From adminpanel > Settings > Ranking settings > Then find Number of members to use the _top skin for and set it to 3. Save it.

Just a notice:
table_top_row.html is the layout for no-premium users
table_top_row_premium.html is the layout for premium users
 

polarx1

New Member
but if I want to make each one with a different thing is it possible I dont want all 3 to be the same.

thanks for helping
 

Mark

Administrator
Staff member
you can creatively use the {$rank} template tag and use that to build your CSS classes.

example:
Code:
<div class="table_top nice{$rank}">
then in CSS you can set your backgrounds etc.

Code:
.nice1 {
background: red;
}
 
.nice2 {
background: yellow;
}
 
.nice3 {
background: green;
}
 
Top