hello
How I can display the filmstrip beside the image on the right side?
pls help..
thx
See how it's done in the Classic filmstrip vert (http://downloads.sourceforge.net/coppermine/cpg1.4.x_theme_classic_filmstrip_vert.zip) theme.
thx..but I want the filmstrip on the right side..but in this theme is the strip on left side.
how I can make that?
I try with html, but not worked..
Take a look at the custom theme that Nibbler refered to. To do so, download that theme from the download section, extract it and then use a plain text editor and compare theme.php of that downloaded theme with your copy.
yes its right. BUT
I want display the filmstrip so:
but at the moment ist there so:
Can me everyone help?
My code is:
// HTML template for filmstrip display
$template_film_strip = <<<EOT
<tr><td>
<table width="220" valign="top" cellspacing="0" cellpadding="0">
<tr>
<td>
{THUMB_STRIP}
</td>
</tr>
</table>
</td>
<!-- BEGIN thumb_cell -->
<div style="float:left;">
<a href="{LINK_TGT}">{THUMB}</a>
</div>
{CAPTION}
{ADMIN_MENU}
<!-- END thumb_cell -->
<!-- BEGIN empty_cell -->
<!-- END empty_cell -->
EOT;
// HTML template for intermediate image display - HS: valign
$template_display_media = <<<EOT
<td align="center" valign="top" class="display_media" height="{CELL_HEIGHT}" style="white-space: nowrap; padding: 0px;">
<table cellspacing="2" cellpadding="0" class="imageborder">
<tr>
<td align="center">
{IMAGE}
{ADMIN_MENU}
</td>
</tr>
</table>
<!-- BEGIN img_desc -->
<table cellpadding="0" cellspacing="0" class="tableb">
<!-- BEGIN title -->
<tr>
<td class="tableb"><center><b>
{TITLE}
</b></center></td>
</tr>
<!-- END title -->
<!-- BEGIN caption -->
<tr>
<td class="tableb"><center>
{CAPTION}
</center></td>
</tr>
<!-- END caption -->
</table>
<!-- END img_desc -->
</td>
EOT;
That's not relevant. The code is here:
starttable();
if ($CONFIG['display_film_strip'] == 1) {
echo "<tr><td width='200' class='tableb' valign='middle' ><!-- gb before film_strip -->";
echo $film_strip;
echo "</td><!-- gb after film_strip -->";
}
echo "<!-- gb before picture -->";
echo $picture;
echo "</tr><!-- gb after picture -->";
endtable();
You need to rearrange that table.
yes thx...you're the king ;) ;D