Hi Michael
The border and aspect ratio can likely be fixed in the CSS - is there a height setting that is squashing the video images?
To make the video titles longer, change the 'truncate' modifier parameter where the titles are in the template - {$item.video_title|truncate:24} so chanhe the 24 to whatever number of characters you want.
To add Vimeo to the grid, first add it to the jrSeamless_list call - {jrSeamless_list modules="jrVideo,jrYouTube,jrVimeo" order_by="_created numerical_desc" pagebreak=30 page=$_post.p pager=true template=$tpl} - then add the appropriate code to the 'captured' code to the two places where it tests for what type of video, the {if . . .}{elseif . . .}{/if} statements -
{if $item.seamless_module_name == "jrYouTube"}
<a href="{$jamroom_url}/{$item.profile_url}/youtube/{$item._item_id}/{$item.youtube_title_url}">
<img src="{$item.youtube_artwork_url}" class="rank_image" width=320 height=180/></a>
{elseif $item.seamless_module_name == "jrVideo"}
<a href="{$jamroom_url}/{$item.profile_url}/video/{$item._item_id}/{$item.video_title_url}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._item_id size="large" alt=$item.video_title title=
$item.video_title class="top_rank" width=320 height=180}</a>
{elseif $item.seamless_module_name == "jrVimeo"}
<a href="{$jamroom_url}/{$item.profile_url}/vimeo/{$item._item_id}/{$item.vimeo_title_url}">
<img src="{$item.vimeo_artwork_url}" class="rank_image" width=320 height=180/></a>
</a>
{/if}
and
{if $item.seamless_module_name == "jrYouTube"}
<a href="{$jamroom_url}/{$item.profile_url}/youtube/{$item._item_id}/{$item.youtube_title_url}">{$item.youtube_title|truncate:24}</a>
{elseif $item.seamless_module_name == "jrVideo"}
<a href="{$jamroom_url}/{$item.profile_url}/video/{$item._item_id}/{$item.video_title_url}">{$item.video_title|truncate:24}</a>
{elseif $item.seamless_module_name == "jrVimeo"}
<a href="{$jamroom_url}/{$item.profile_url}/vimeo/{$item._item_id}/{$item.vimeo_title_url}">{$item.vimeo_title|truncate:24}</a>
{/if}
Can you identify for me a local video that is linking to a non-existant page so that I can check it (save me clicking on the all to find it lol)
Thanks
--
Paul Asher - JR Developer and System Import Specialist
updated by @paul: 12/07/15 12:41:10AM