Please take a couple of minutes to search previous discussions and documentation for solutions before starting new threads.
customisation questions (1 viewing) (1) Guest
 | | |
|
TOPIC: customisation questions
|
|
customisation questions 4 Months, 2 Weeks ago
|
Karma: 0
|
|
hi, realy i loved this extension
i have some questions for customisation
a.
it is possible in the user nav to put image url and not just a background color
#hwdvids .usernav
background-color: #88c909;-(here i want to put a black image bar)
b.
it is possible to change the height from "Most Viewed", "Most Favoured" etc bar? I would like at least twice length.
c.
it is possible to change the order in which they appear the "more from users", "recent", "more from category"?. For example i want to appears first the "more from category"
d.
I change all the color an font-size from templete.css but i don't find who i change the font size from "Featured", "Most Viewed", "Most Favoured" etc. I have change the background and line-height from #hwdvids h2 , but from where i change the font size?
i try to change the font-size: 100%; to font-size: 70%; but nothing happens
thanks
|
|
|
|
Last Edit: 2010/03/13 21:11 By manosmanolis.
|
|
|
Re:customisation questions 4 Months, 2 Weeks ago
|
Karma: 0
|
|
b.
it is possible to change the height from "Most Viewed", "Most Favoured" etc bar? I would like at least twice length.
solved inside template.css i change the height
#hwdvids .scoller {
height:447px;
overflow-y:scroll;
overflow-x:hidden;
|
|
|
|
Last Edit: 2010/03/14 13:50 By manosmanolis.
|
|
|
Re:customisation questions 4 Months, 2 Weeks ago
|
Karma: 0
|
|
c.
it is possible to change the order in which they appear the "more from users", "recent", "more from category"?. For example i want to appears first the "more from category"
solved from video_player_l.tpl change the order they appear in the code
{if $print_categoryvideolist}
<div class="standard">
<h2>{$smarty.const._HWDVIDS_MORECATVIDS}</h2>
<div class="scoller">
<div class="list">
<div class="box">
{foreach name=outer item=data from=$categoryvideolist}
{include file="video_list_small.tpl"}
<div style="clear:both;"></div>
{/foreach}
</div>
</div>
</div>
</div>
{/if}
{if $print_uservideolist}
<div class="standard">
<h2>{$smarty.const._HWDVIDS_TITLE_MOREBYUSR} {$videoplayer->uploader}</h2>
<div class="scoller">
<div class="list">
<div class="box">
{foreach name=outer item=data from=$userlist}
{include file="video_list_small.tpl"}
<div style="clear:both;"></div>
{/foreach}
</div>
</div>
</div>
</div>
{/if}
{if $print_relatedlist}
<div class="standard">
<h2>{$smarty.const._HWDVIDS_RELATED}</h2>
<div class="scoller">
<div class="list">
<div class="box">
{foreach name=outer item=data from=$listrelated}
{include file="video_list_small.tpl"}
<div style="clear:both;"></div>
{/foreach}
</div>
</div>
</div>
</div>
{/if}
</div>
|
|
|
|
|
|
|
Re:customisation questions 4 Months, 1 Week ago
|
Karma: 189
|
a. it is possible in the user nav to put image url and not just a background color
#hwdvids .usernav
background-color: #88c909;-(here i want to put a black image bar)Yes, do something like:
#hwdvids .usernav{
background-image: url('/images.png') no-repeat top center;
}
b. SOLVED
c. SOLVED
d. I change all the color an font-size from templete.css but i don't find who i change the font size from "Featured", "Most Viewed", "Most Favoured" etc. I have change the background and line-height from #hwdvids h2 , but from where i change the font size?
i try to change the font-size: 100%; to font-size: 70%; but nothing happensPlease see your other post for a discussion on this issue.
Does this help?
|
|
Davros
Administrator
Posts: 13078
|
|
Last Edit: 2010/03/22 14:32 By Davros.
|
|
|
 | | |
|