![]() |
|
|||||||
| Styles / Templates Use this forum to share or find help on creating CSS style sheets or full ClipShare templates. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Member
|Forum Newbie|
![]() Join Date: Apr 2007
Posts: 24
![]() |
Changing distance between thumbnails on the watch page.
We have css/style.css in this file we can find: Code:
.moduleFeaturedThumb {
border: 5px solid #CC3333;
margin: 5px;
}
Code:
.moduleFeaturedThumb {
border: 5px solid #CC3333;
margin: 5px;
margin-top: 0em;
margin-right: 0em;
margin-left: 0em;
margin-bottom: 0em;
}
The result was very strange this block chanhed only horizontal distance to zero and vertical distance left unchanged. then I decided to increase the distance ebetween thumbnails Code:
.moduleFeaturedThumb {
border: 5px solid #CC3333;
margin: 5px;
margin-top: 10em;
margin-right: 10em;
margin-left: 10em;
margin-bottom: 10em;
}
There is some minimul horizontal distance between thumbnails that can't be edited using css, you can increase the distance but can't decrease it. Have anyone else the same problems? |
|
|
|
|
|
#2 |
|
Member
|Forum Newbie|
![]() Join Date: Apr 2007
Posts: 24
![]() |
TO solve the problem go to template/video.tpl find the string
<TABLE cellSpacing=0 cellPadding=0 width=712 border=0 > and play with the width, decreasing it you will decrease the minimum size between the rows. |
|
|
|
|
|
#3 |
|
Member
|Forum Newbie|
![]() Join Date: Apr 2007
Posts: 24
![]() |
Or simply edit cellspacing= 1...[N]
<TABLE cellSpacing=0 cellPadding=0 width=712 border=0 > ![]() |
|
|
|
|
|
#4 |
|
Member
|Forum Newbie|
![]() Join Date: Apr 2007
Posts: 24
![]() |
To change rows and colums find and change this code in chanels.tpl:
Code:
{if $smarty.section.i.index mod 3 eq "0" and $smarty.section.i.index gt "0"}
for exmple if you want to have 5 rows set "mod 5 eq "0"". Unfortunately the hole number of chanels is shown on one page and it is not possible to change the the number of colums because there is no limit of colums to be shown on the page. |
|
|
|
|
|
#5 |
|
Forum Advisor
|Forum Guru|
![]() ![]() ![]() ![]() ![]() |
To make it seem less like you're having a conversation with yourself, I'd like to butt in and say thank you for posting your findings here on the forums. I'm sure others will find them useful!
![]()
__________________
Yours truly, KAT Resident CS Geekette |
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| watch categori | DjBeowolf | Styles / Templates | 0 | 03-29-2007 07:40 AM |
| [1.7.0][MOD] Videos on 3 or 4 columns in Watch section | videospud | Bug Fixes / Addons / Mods | 2 | 02-01-2007 05:33 AM |