Hello!
On my Joomla 3.10.8, I want to have a thumbnail page with external links. It should be like a gallery, except that clicking on each thumbnail opens an external website or an article, not the image. Is there any extension for this?
Thumbnails page with external links
Moderator: General Support Moderators
Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting.
Forum Post Assistant - If you are serious about wanting help, you should use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting.
Forum Post Assistant - If you are serious about wanting help, you should use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10
-
- Joomla! Apprentice
- Posts: 42
- Joined: Wed Aug 19, 2009 10:36 pm
- AMurray
- Joomla! Exemplar
- Posts: 8330
- Joined: Sat Feb 13, 2010 7:35 am
- Location: Australia
Re: Thumbnails page with external links
I don't think there would be and I can't find any.
It would be easy enough to build a page with CSS Grid. (https://www.w3schools.com/css/css_grid.asp and also https://getbootstrap.com/docs/5.2/layout/css-grid/). CSS Grid is responsive, so should look good on any device - desktop or mobile. It means some "basic" coding - perhaps more copy and paste from the examples on W3C than anything. Read that page and tutorial, have a play with the "Try it yourself" parts.
Once you have the table structure, insert the images into each cell with the relevant link. The images should be "processed" and optimised off-line (a handy tool is Irfanview for bulk processing of images).
[off topic: your joomla's out of date; the current version is 3.10.11]
It would be easy enough to build a page with CSS Grid. (https://www.w3schools.com/css/css_grid.asp and also https://getbootstrap.com/docs/5.2/layout/css-grid/). CSS Grid is responsive, so should look good on any device - desktop or mobile. It means some "basic" coding - perhaps more copy and paste from the examples on W3C than anything. Read that page and tutorial, have a play with the "Try it yourself" parts.
Once you have the table structure, insert the images into each cell with the relevant link. The images should be "processed" and optimised off-line (a handy tool is Irfanview for bulk processing of images).
[off topic: your joomla's out of date; the current version is 3.10.11]
Regards - A Murray
-
- Joomla! Hero
- Posts: 2506
- Joined: Fri Jul 05, 2013 10:35 am
- Location: Parts Unknown
Re: Thumbnails page with external links
Are those thumbnails supposed to be manually uploaded or automatically generated to show preview of the link?
-
- Joomla! Apprentice
- Posts: 42
- Joined: Wed Aug 19, 2009 10:36 pm
- Per Yngve Berg
- Joomla! Master
- Posts: 29644
- Joined: Mon Oct 27, 2008 9:27 pm
- Location: Romerike, Norway
-
- Joomla! Apprentice
- Posts: 42
- Joined: Wed Aug 19, 2009 10:36 pm
Re: Thumbnails page with external links
This is not what I need.... I need thumbnails, not just links..Per Yngve Berg wrote: ↑Tue Jan 24, 2023 8:22 amThe Weblinks component should do what you want.
https://extensions.joomla.org/extension/weblinks/
- AMurray
- Joomla! Exemplar
- Posts: 8330
- Joined: Sat Feb 13, 2010 7:35 am
- Location: Australia
Re: Thumbnails page with external links
So to be clear you want a layout as you would see with a photo gallery, but instead of opening photos in light-box, you want the links to be to external sites (opening in new windows or new tabs).
The way I suggested is one method (for the layout of the page - CSS Grid). Create the 'grid' layout (the columns and rows) then insert the images into each and create the hyperlinks.
Another method, https://extensions.joomla.org/extension/jv-thumio/ could help (?). The plugin generates actual thumbnail (screenshots) of the websites being linked to. (For some reason I can't reach the demo as linked on the JED).
You can create the 'grid' with CSS Grid as I previously mentioned, then by a "shortcode" being inserted, you link to the sites you want to, and the plugin auto-generates the thumbnail image. In this way you don't have to be concerned about creating the images that you're using to link to the sites.
The way I suggested is one method (for the layout of the page - CSS Grid). Create the 'grid' layout (the columns and rows) then insert the images into each and create the hyperlinks.
Another method, https://extensions.joomla.org/extension/jv-thumio/ could help (?). The plugin generates actual thumbnail (screenshots) of the websites being linked to. (For some reason I can't reach the demo as linked on the JED).
You can create the 'grid' with CSS Grid as I previously mentioned, then by a "shortcode" being inserted, you link to the sites you want to, and the plugin auto-generates the thumbnail image. In this way you don't have to be concerned about creating the images that you're using to link to the sites.
Regards - A Murray