I would like to minimize the horizontal space between the thumbnails left/right and the main picture in the middle when the slideshow is running.
Is that possible?
Thanks
Offline
in template/default/picture.vtp (1.3.0), replace
72 <!--VTP_previous-->
73 <a href="{#url}" title="{#title}">
74 <img src="{#src}" class="imgLink" style="margin-right:10px;margin-left:5px;" alt="{#alt}"/>
75 </a>
76 <!--/VTP_previous-->by
<!--VTP_previous-->
<a href="{#url}" title="{#title}">
<img src="{#src}" class="imgLink" style="margin-right:2px;margin-left:5px;" alt="{#alt}"/>
</a>
<!--/VTP_previous-->OK, for left picture... now the right one : replace
120 <!--VTP_next-->
121 <a href="{#url}" title="{#title}">
122 <img src="{#src}" class="imgLink" style="margin-right:10px;margin-left:5px;" alt="{#alt}"/>
123 </a>
124 <!--/VTP_next-->by
<!--VTP_next-->
<a href="{#url}" title="{#title}">
<img src="{#src}" class="imgLink" style="margin-right:5px;margin-left:2px;" alt="{#alt}"/>
</a>
<!--/VTP_next-->Offline
Yes, that's it!
Thanks 8-)
Offline