How to change rank 1 sites listing?

Basti

Administrator
Staff member
Thats the premium membership layout. Its just coincidence that he is rank 1. Every premium member will have a yellow background.

However if you just want rank 1 to have a different css style itts fairly easy to do with a plugin, even without

basicly you go into table_top_row.html
find for example
Code:
<div class="table_top_inside">
This is the part where the banner, description is

change to
Code:
<div class="table_top_inside color_{$rank}">
now in user.css you could write
Code:
.color_1 {
    background: yellow;
}
By including the rank into the css class you could style each rank individually like above color_1, color_2 etc
 

Mark

Administrator
Staff member
looks like you missed a step (table_top_row), looking at your source I dont see the edit as outlined above. Infact a search for "_color" in your source produces zero results.
 

Bart

Active Member
I followed the step above and when it didn't work i tried playing around with it and i missed a few things up so i replaced the files with the original ones.
 

Basti

Administrator
Staff member
Appears html doesnt like the order. Use it like this, tested this time.
this is your div
Code:
<div class="table_top_inside color_{$rank}">
use in your css .color_1 instead of 1_color

Updated my first post
 
Top