-
-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Add support for Image Descriptions #2700
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We can make inline image descriptions, but only if image is centered. And it is not seen once you open the image. It is inconvenient.
I'd like to see a support for Image descriptions that are seen when you preview the image.
GLightbox supports them, they just need to be properly implemented.
<!-- Simple Description -->
<a href="large.jpg" class="glightbox4" data-glightbox="title: My title; description: this is the slide description">
<img src="small.jpg" alt="image" />
</a>
<!-- Advanced Description -->
<a href="large.jpg" class="glightbox5" data-glightbox="title: My title; description: .custom-desc1">
<img src="small.jpg" alt="image" />
</a>
<div class="glightbox-desc custom-desc1">
<p>The content of this div will be used as the slide description</p>
<p>You can add links and any HTML you want</p>
</div>
One way would be to use ALT Text and and use its contents for description.
{: width="972" height="589" .w-25 .right}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request