Ranking position

joana16

New Member
Hello,

First of all I would like to give my congratulations to all involved in the development of this amazing system.

You could help me?

My ratings so http://prntscr.com/9na5mr, realizes that the member 1 and 2 are next to each other. I wanted to position them one on top of another.
 

Mark

Administrator
Staff member
Hello, you should be able to copy the contents from table_row.html into child/table_top_row.html

let me know how that works for you
 

joana16

New Member
table_row.html

Code:
<div class="blog-four-item">
    <div class="row">
        <div class="col-md-4">
            <div class="blogs-four-head">
                <div class="blog-meta">
                    <i class="fa fa-calendar color"></i> &nbsp; {$join_date} &nbsp;
                    <i class="fa fa-user color"></i> &nbsp; {$username}
                </div>
                <div class="meta-block">
                    <span class="bold">{$lng->g_category}:</span>
                    <a href="{$list_url}/{$url_helper_cat}{$category_url}{$url_tail}" class="label label-white b-tooltip" title="{$category}">{$category, length=30}</a>
                </div>
                <div class="meta-block">
                    <span class="bg-white br-color circle-3 color">#{$rank}</span>
                    <a href="{$url}" onclick="out(this,'{$username}');" class="btn btn-white" rel="nofollow">{$lng->g_visit}</a>
                    <a href="{$list_url}/{$url_helper_a}details{$url_helper_u}{$username}{$url_tail}" class="btn btn-white">{$lng->table_stats}</a>
                </div>
            </div>
        </div>   
        <div class="col-md-8">
            <div class="blogs-four-content">
                <h5><a href="{$list_url}/{$url_helper_a}details{$url_helper_u}{$username}{$url_tail}">{$title}</a></h5>
                <p>{$description, length=255}</p>
            </div>
        </div>
    </div>
</div>
table_top_row.html

Code:
<div class="col-sm-4 ranking-top">
    <div class="rest-item br-grey br-size-1 b-tooltip" title="{$title}">
        <img class="img-responsive" src="{$screenshot_path}_med.jpg" alt="{$title}">
        <div class="item-dtls">
            <h5><a href="{$url}" onclick="out(this,'{$username}');" rel="nofollow">{$title, length=50}</a></h5>
        </div>
        <div class="ecom bg-color">
            <button class="btn btn-transparent">#{$rank}</button>
            <a class="btn btn-transparent" href="{$url}" onclick="out(this,'{$username}');">{$lng->g_visit}</a>
            <a class="btn btn-transparent" href="{$list_url}/{$url_helper_a}details{$url_helper_u}{$username}{$url_tail}">{$lng->table_stats}</a>
        </div>
    </div>
</div>
 

Mark

Administrator
Staff member
yup, copy all the code from table_row.html into child/table_top_row.html
 

Mark

Administrator
Staff member
looks like you might have a premium member in position #1?

if so, you might need to also paste all the code from table_row.html into child/table_top_row_premium.html
 

Mark

Administrator
Staff member
copy table_filler.html to child/table_filler.html

add the following before any other code:

<div class="clearfix"></div>
 
Top