Archived topic
Auto-adjustment of captions below Images
3 replies · Started by Nicolas on December 18, 2022
Hi,
I have been using the GB Image block and I have noticed that the caption does NOT automatically adjust to the width of the image. It can go wider than the image itself as shown here.
How can I get this fixed while ensuring it will remain good-looking whatever the size of the screen (responsiveness)?
Thank you
Hi there,
i the figcaption should have a max-width of the figure element, which can be wider then the image if the image is smaller.
Where can i see the issue to check that ?
Please see the page URL in the Private info field.
Thank you.
You could try this CSS:
figure[class*="image"] {
display: table;
}
figure[class*="image"] figcaption {
display: table-caption;
caption-side: bottom;
}
