#1 2003-12-05 11:13:41

hama
Member
2003-12-02
27

Less Space Between Thumbnail And Main Picture

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

 

#2 2003-12-06 09:34:55

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
14068

Re: Less Space Between Thumbnail And Main Picture

in template/default/picture.vtp (1.3.0), replace

Code:

     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

Code:

          <!--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

Code:

    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

Code:

          <!--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

 

#3 2003-12-06 17:11:28

hama
Member
2003-12-02
27

Re: Less Space Between Thumbnail And Main Picture

Yes, that's it!

Thanks  8-) 

Offline

 

Board footer

Powered by FluxBB