documenta image link

zo2studios / 2013-09-18 06:30:17   

hello,
I would like to know if it's possible to have a link in the image instead of have it in the titles.
so i want to click in the image and it opens the new page

zo2.ch/fr/index.php/…

best

arsondpi / 2013-09-18 07:18:41   

No not automatically and not without customizing the plugin.
WHat you can do though is use html to achieve this just by clicking the P button above your text area to disable HTML Proccess.

zo2studios / 2013-09-18 07:26:54   

so if i really want to do it i can make a table with images and links in the text area.
and erase all the images from the exhibition...
because i don't know how to customize the plugin

arsondpi / 2013-09-18 08:31:36   

-Click the P button to disable Proccess HTML
-Upload your images in their final size
-For each image click the tools icon (Edit) underneath each thumbnail and click the Inactive radio button. Then click the Insert image link.
-You're going to get something like

  1. <media:gimg 'IMAGE_NAME_HERE.jpg' />

The code above is a img tag/thumbnail
You need to wrap the code above in a link tag with the title.
Thus for example:

  1. <a href='LINK_URL_HERE' target="_blank" style="display: block; width: 150px; height: auto; float: left;">
  2. <media:gimg 'IMAGE_NAME_HERE.jpg' />
  3. title text here
  4. </a>
  5. <a href='LINK_URL_HERE_2' target="_blank" style="display: block; width: 150px; height: auto; float: left;">
  6. <media:gimg 'IMAGE_NAME_HERE_2.jpg' />
  7. title text here 2
  8. </a>
  9. <a href='LINK_URL_HERE_3' target="_blank" style="display: block; width: 150px; height: auto; float: left;">
  10. <media:gimg 'IMAGE_NAME_HERE_3.jpg' />
  11. title text here 3
  12. </a>
  13. <a href='LINK_URL_HERE_4' target="_blank" style="display: block; width: 150px; height: auto; float: left;">
  14. <media:gimg 'IMAGE_NAME_HERE_4.jpg' />
  15. title text here 4
  16. </a>
  17. <div style='clear: left;'></div>

Note the clear: left; div in the end.

zo2studios / 2013-09-18 13:57:07   

it works!!
thanks a lot!

This thread has been closed, thank you.