![]() |
![]() |
![]() |
|
|||||||
| User interface Discuss eSyndiCat templates here. All the questions regarding eSyndiCat [FREE] Front end |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Join Date: Jun 2006
Posts: 4
![]() |
Hello,
I would like to know how I could change the position of featured links from left to the bottom of the category links and adding the alexa thumbs alongside the featured links? A good example of this is one made by http://www.niche-listings.com/ Any insight will be appreciated. |
|
|
|
|
|
#2 |
|
Guest
Posts: n/a
|
To place your featured box under the categories list, you should open header.tpl or footer.tpl (it depends on your template) and find the following code:
Code:
{if $featured_links && $config.featured_box}
<div class="box">
<div class="box-caption">{$lang.featured_links}</div>
<div class="box-content">
<div class="links">
{foreach from=$featured_links item=link}
<div class="featured-link"><a href="{$link.url}" class="title" id="l{$link.id}" {if $config.new_window}target="_blank"{/if}>{$link.title}</a></div>
{/foreach}
</div>
</div>
</div>
{/if}
Code:
{if $categories}
<div class="box">
<div class="box-caption">{$lang.categories}</div>
<div class="box-content">{$categories}</div>
</div>
{/if}
You can not display alexa thumbs for them (niche-listings.com uses google adsense instead of real featured links, thats why those thumbs are alway default) |
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|