4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: Fragezeichen on March 08, 2010, 04:48:10 PM

Title: Thumbnail preview last/next Picture
Post by: Fragezeichen on March 08, 2010, 04:48:10 PM
Hi all,

I miss some older Mod to get a Thumbnailpreview in Details, for the last and next Picture.
Example, http://www.demo.vienna-pictures.com/details.php?image_id=34

Hallo Zusammen,

eine Frage zu einen Mod den ich leider nicht mehr finden kann.
Die suche brachte auch nichts brauchbares.

Und zwar wird eine Navi für die Detail gesucht, Thumbnailanzeige für vorheriges und nächstes Bild.

So wie auf dieser Seite,oben:
http://www.demo.vienna-pictures.com/details.php?image_id=34

Vielen Dank für die Mithilfe

 :?:
Title: Re: Thumbnail preview last/next Picture
Post by: V@no on March 08, 2010, 05:04:05 PM
F.A.Q. -> How can I display Next/Previous thumbnails in details.html? (http://www.4homepages.de/forum/index.php?topic=7350.0)
Title: Re: Thumbnail preview last/next Picture
Post by: Fragezeichen on March 08, 2010, 10:14:18 PM
thanks man,thats what i looking for
 :D
Title: Re: Thumbnail preview last/next Picture
Post by: tomtom86 on August 24, 2010, 10:18:38 PM
Gibt es eine Möglichkeit die Thumbnails für Vorheriges/Nächstes-Bild auf immer auf die Größe von 80x80px zu komprimieren. Bei mir verzieht sich das Layout 960px aufgrund stehender oder liegender aufnamen immer.


_____________________________________________________________________________________________________________________________________________________________
Is there any way for the thumbnails "Previous / Next image" to show allways on the size of 80x80px. My layout 960px disfiguration due to vertical or horizontal pics forever.


Hoffe es kann jemand helfen
Hope for someones help

Title: Re: Thumbnail preview last/next Picture
Post by: Rembrandt on August 24, 2010, 10:57:52 PM
immer auf die Größe von 80x80px zu komprimieren. ....
der code ist von meiner demo seite, die größe kannst du im <img> tag anpassen,:
Code: [Select]
<div style="border:1px solid #7D8568;width:100%;height:56px;">
{if prev_image_name}
<span style="float:left;margin:3px;width:70px; height:50px;"><a href="{prev_image_url}"><img src="{prev_thumb_file}" style="width:70px; height:50px;border-style:none;" alt="prev_img"></a></span>
<span style="float:left;margin:3px;">{lang_prev_image}<br>{prev_image_name}</span>
{endif prev_image_name}
{if next_image_name}
<span style="float:right;margin:3px;width:70px; height:50px;"><a href="{next_image_url}"><img src="{next_thumb_file}" style="width:70px; height:50px;border-style:none;" alt="next_img"></a></span>
<span style="float:right;margin:3px;">{lang_next_image}<br>{next_image_name}</span>
{endif next_image_name}
<div style="clear:both;"></div>
<br>
</div>


mfg Andi