Hi com
hab viel gesucht und nichts gefunden zum thema...
wie kann ich den filmstreifen statt unter dem bild wie es jetzt ist über das bild tun...
danke & gruss
mirk
Kopiere folgendes in deine theme.php:
function theme_display_image($nav_menu, $picture, $votes, $pic_info, $comments, $film_strip)
{
global $CONFIG;
$width = $CONFIG['picture_table_width'];
starttable();
echo $nav_menu;
endtable();
if ($CONFIG['display_film_strip'] == 1) {
echo $film_strip;
}
starttable();
echo $picture;
endtable();
echo $votes;
$picinfo = isset($_COOKIE['picinfo']) ? $_COOKIE['picinfo'] : ($CONFIG['display_pic_info'] ? 'block' : 'none');
echo "<div id=\"picinfo\" style=\"display: $picinfo;\">\n";
starttable();
echo $pic_info;
endtable();
echo "</div>\n";
echo "<div id=\"comments\">\n";
echo $comments;
echo "</div>\n";
}
ja das ging schnell!!! besten dank genau das hab ich gesucht... :)
gruss mirk