Author Topic: Replace the links as "Previous image" and "Next image" by thumbnail images  (Read 4566 times)

0 Members and 2 Guests are viewing this topic.

Offline fbmd

  • Pre-Newbie
  • Posts: 3
    • View Profile
It would replace the links as "Previous image" and "Next image" by thumbnail images of correspondents?
A replacement is like the image below:



Sorry for my bad English.

Offline † manurom

  • Full Member
  • ***
  • Posts: 227
    • View Profile
    • manurom's 4images templates
Hello, and welcome in this forum;
simply edit templates/your_template/details.html file.

Find this:
Code: [Select]
<!-- <br /><br /><a href="{prev_image_url}"><img src="{prev_thumb_file}" border="1"></a> -->
replace by:
Code: [Select]
<br /><br /><a href="{prev_image_url}"><img src="{prev_thumb_file}" border="1"></a>
And thind that:
Code: [Select]
<!-- <br /><br /><a href="{next_image_url}"><img src="{next_thumb_file}" border="1"></a> -->
and replace by:
Code: [Select]
<br /><br /><a href="{next_image_url}"><img src="{next_thumb_file}" border="1"></a>
That's done!

Offline fbmd

  • Pre-Newbie
  • Posts: 3
    • View Profile
manurom,
thank you very much!
 :D