размер маленькой фотографии вы можете задать в панели администрарования, только запомните - изменив размеры там - фотографии автоматом не изменят своего размера... вам надо будет снова перезалить фотографии....
а по поводу киноленты.....
открываете xls шаблоны.... в фотогалерее находите шаблон "СписокКартинок"...
в нем есть следующий код:
<table border="0" cellspacing="0" cellpadding="0" style="margin-bottom: 10px;">
<tr style="background: url('/images/top_film_border.gif') repeat-x 0 100%;">
<xsl:for-each select="//blocks/items/item[item_status=1]">
<xsl:if test="position() > $current_position and ($current_position + $items_in_line) >= position()">
<td style="padding: 0px 0px 22px 5px;">
<!-- Название -->
<p class="news_title">
<a href="{item_path}">
<xsl:value-of disable-output-escaping="yes" select="item_name"/>
</a>
</p>
</td>
</xsl:if>
</xsl:for-each>
</tr>
<tr style="background-color: #eeeeee">
<xsl:for-each select="//blocks/items/item[item_status=1]">
<xsl:if test="position() > $current_position and ($current_position + $items_in_line) >= position()">
<td style="padding: 0px 5px 0px 5px;">
<xsl:if test="item_small_image!=''">
<!-- Проверяем задан ли путь к файлу большого изображения -->
<xsl:if test="item_image!=''">
<a href="{item_image}" target="_blank">
<img src="{item_small_image}" class="image" />
</a>
</xsl:if>
<xsl:if test="item_image = ''">
<img src="{item_small_image}" class="image" />
</xsl:if>
</xsl:if>
</td>
</xsl:if>
</xsl:for-each>
</tr>
<tr style="background: url('/images/bottom_film_border.gif') repeat-x 0 0;">
<xsl:for-each select="//blocks/items/item[item_status=1]">
<xsl:if test="position() > $current_position and ($current_position + $items_in_line) >= position()">
<td style="padding: 25px 0px 0px 5px;">
<span class="date">
<xsl:value-of disable-output-escaping="yes" select="item_image/@width"/>×<xsl:value-of disable-output-escaping="yes" select="item_image/@height"/>
<br/>
</span>
<!-- Дата время -->
<span class="date">
<xsl:value-of disable-output-escaping="yes" select="item_datetime"/>
</span>
<xsl:if test="item_description != ''">
<br/>
<xsl:value-of disable-output-escaping="yes" select="item_description"/>
</xsl:if>
<xsl:if test="count(tags/tag) > 0">
<p class="tags">
<img src="/hostcmsfiles/images/tags.gif" align="left" style="margin: 0px 5px -2px 0px"/>
<xsl:apply-templates select="tags/tag"/>
</p>
</xsl:if>
<xsl:if test="count(site_user) > 0">
<p>
<img src="/hostcmsfiles/images/user.gif" style="margin: 0px 5px -4px 0px"/>
<strong>
<a href="/users/info/{site_user/site_user_login}/" class="c_u_l">
<xsl:value-of select="site_user/site_user_login"/>
</a>
</strong>
<xsl:if test="count(item_comments/comment) > 0">,
<img src="/hostcmsfiles/images/comments.gif" style="margin: 0px 5px -4px 0px"/>
<a href="{item_path}#comments">
<xsl:value-of select="count(item_comments//comment)"/> <xsl:call-template name="declension">
<xsl:with-param name="number" select="count(item_comments//comment)"/></xsl:call-template></a>
</xsl:if>
</p>
</xsl:if>
</td>
</xsl:if>
</xsl:for-each>
</tr>
</table>