The Dark Elegant Collection

h3rb

New Member
Hi,
thanks or this good skin.

I have a questions, where can i change the size of the sidebar (menu), i have search the css file, but i dont found it.

Thx for help
 

Basti

Administrator
Staff member
yes but the skin you use is not up to date, so you at least need to do the 2 steps i pointed out
 

Basti

Administrator
Staff member
As of now your site dont load for me at all, so i cant look :)

EDIT::
Ah its back, cant spot anything wrong though, what exactly you mean?
 

Mark

Administrator
Staff member
this skin does not show banners in the ranking tables (I assume to keep pages loading fast).

You can add the tag {$banner_url} in the table_row & table_top_row and any other templates you want the banners to show.

<img src="{$banner_url}" alt="{$title}"/>
 

Basti

Administrator
Staff member
You will need to adjust the css, as far as i remember. And the html as well. There used to be showing screenshots there, so you inline-block css, but the banner breaks the width used for the 2 parts ( screen on left, description on right )
 

mikez006

Member
it took some time to edit this template to make it look right, but I got most of it done. One thing I can't figure out is how to get the "Your Site Here" to display vertically instead of like this
Code:
2 Your Site Here 3 Your Site Here 4 Your Site Here 5 Your Site Here 6 Your Site Here 7 Your Site Here 8 Your Site Here 9 Your Site Here 10 Your Site Here
example page
http://www.mmorpg-top100.com/?cat=Aion-Online
 

cajkan

Active Member
Hey Mikez006,
Ive inspected the page:

1. You can style that with CSS, add DIVs
2. Remove " Your site here " - text from the admin panel
 

Basti

Administrator
Staff member
table_filler.html, normally looks different, but due table filler ( a.k.a Your site here ) was originally not needed for this skin you now have problems using it the default way parabola uses it.

What i suggest is editing that file and change the content to something like this maybe. Its not tested and you might need to make small adjustments.
Code:
<div class="table_filler">
        <div class="table_rank">{$rank}</div>
        <div class="table_description"><a href="{$list_url}/{$url_helper_a}join{$url_tail}"><strong>{$lng->table_your_site_here}</strong></a></div>
        <div class="cb"> </div>
</div>
Then you could add some css to your css file like
Code:
.table_filler {
  margin: 10px 0;
  background: #000;
}
.table_filler .table_rank {
  float: left;
}
.table_filler .table_description {
  float: left;
}
 
Top