Home › Forums › ART WordPress Theme › Title under images with “fullscreen floating title”
- This topic has 22 replies, 2 voices, and was last updated 1 year ago by
SeaTheme.
-
AuthorPosts
-
May 15, 2025 at 8:21 pm #31577
Hey guys, is it also possible to display the title under an image of the portfolio pages on the main page, even if I have selected the “fullscreen floating title” on mouseover?
May 16, 2025 at 12:56 am #31580Hi there,
Welcome to SeaTheme forum.
No, it isn’t possible to display the title under an image with “fullscreen floating title”. Please select the option “Image + Text” for “Item Style”.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 16, 2025 at 4:36 pm #31581Hello and thanks for the answer!
I have tried this, unfortunately with the option “image + text” the images are cropped and apparently I don’t have the possibility to turn this off like with “image floating title” (Fit image to container). Is there a workaround?
Another option for me would be to select “image with mask” as the item style and then select “Second featured image+text” on mouseover. is there an option here to make the title permanently visible?
Also, is it possible that the title is always displayed at the bottom right with a distance of 5px to the image? Currently it always seems to be a different value depending on the image.
May 17, 2025 at 5:12 am #31582Hi, welcome
1. enable “Fit Image into Grid“, the images will not be cropped
2. It is possible via the custom CSS(Appearance > Customize: Additional CSS):
.grid_item_2nd_class .grid-item-con-text { opacity: 1; }3. It is not pssible if the “Fit Image into Grid” is enabled. Under normal circumstances, it cannot know the boundaries of the image.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 17, 2025 at 8:19 am #31583Hello again and thanks for the quick support!
I have tested it, but unfortunately I have not achieved the desired result.
Here is the screenshot of the settings.
I have selected “image+text” as the item style. But nowhere can I find the item “Fit image into container”.
Unfortunately, the images are definitely displayed in a different aspect ratio, which bothers me a lot.Everything else works exactly as I want it to, even the text spacing to the images is now even.
May 18, 2025 at 2:39 am #31585Hi welcome
The screeshot cannot be visited, please check the link of screenshot.
You can find ‘Fit image into container’ option here: https://www.dropbox.com/scl/fi/y2pfm9tguyey8d71un0cp/qq_20250518103807.png?rlkey=0sx4jq5ud2ddai9jv01ggbbfh&st=fx83uamd&dl=0
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 18, 2025 at 7:44 pm #31587Sorry my fault, here is the screenshot.
And sorry for the confusion, I want to assign the images on my home page via the portfolio and use mansonry grid…May 19, 2025 at 1:37 am #31589Thanks
There is no the “Fit Image into Grid” option on maronygrid.
It is possible via the custom CSS(Appearance > Customize: Additional CSS):.grid-stack-item .grid-item-img { object-fit: contain; }
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 19, 2025 at 8:11 am #31590Thank you very much, that definitely helped! I have another question, as the typo is now unfortunately offset from the images. However, I have to attach the screens privately.
May 19, 2025 at 8:14 am #31591This reply has been marked as private.May 20, 2025 at 2:02 am #31592Hi, welcome
It needs add JavaScript codes(js codes)
1. install a plugin named Simple Custom CSS and JS(link). The free version is enough. Please go to Custom CSS & JS > Add Custom JS to add the javascript codes.

2. Clean the input box, add js codes(below), click publish
jQuery(document).ready(function( $ ){ function adjustImageContainers() { document.querySelectorAll('.grid-stack img').forEach(img => { const imgWidth = img.offsetWidth; const imgHeight = img.offsetHeight; const naturalWidth = img.naturalWidth; const naturalHeight = img.naturalHeight; if (!naturalWidth || !naturalHeight || !imgWidth || !imgHeight) return; const imgRatio = naturalWidth / naturalHeight; const containerRatio = imgWidth / imgHeight; let rightSpace = 0, bottomSpace = 0; if (imgRatio > containerRatio) { const renderedHeight = imgWidth / imgRatio; bottomSpace = (imgHeight - renderedHeight) / 2; } else if (imgRatio < containerRatio) { const renderedWidth = imgHeight * imgRatio; rightSpace = (imgWidth - renderedWidth) / 2; } const container = img.closest('.grid-stack-item')?.querySelector('.grid-item-con-text-show'); if (container) { container.style.marginTop = ''; container.style.marginLeft = ''; if (bottomSpace > 0) { container.style.marginTop = <code>-${bottomSpace}px</code>; } if (rightSpace > 0) { container.style.marginLeft = <code>-${rightSpace}px</code>; } } }); } setTimeout(adjustImageContainers, 200); let resizeTimer; window.addEventListener('resize', () => { clearTimeout(resizeTimer); resizeTimer = setTimeout(adjustImageContainers, 200); }); });
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 20, 2025 at 9:08 am #31594This reply has been marked as private.May 21, 2025 at 1:07 am #31596Sure, please leave the access data (URL/user/pass) via picking up “Set as private reply”.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 21, 2025 at 7:39 am #31597This reply has been marked as private.May 22, 2025 at 12:57 am #31598This reply has been marked as private.May 22, 2025 at 6:11 am #31599This reply has been marked as private.May 23, 2025 at 2:03 am #31603It works now.
I find a easier way via the custom CSS:.grid-stack-item .grid-item-img { object-fit: contain; object-position: bottom right; }ps: I have disabled the customjs plugin.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 23, 2025 at 6:51 am #31606I don’t know why, but unfortunately the pictures are now all in the wrong proportion again. I have uploaded an example image again in a private Post. You can see how the font of the layout is cut off in the current view and how it should actually look. Unfortunately, this is a really important part for me as an image editor. Can you please take another look? The proportions were correct before.
May 23, 2025 at 6:52 am #31607This reply has been marked as private.May 23, 2025 at 6:59 am #31608This reply has been marked as private.May 23, 2025 at 7:05 am #31609I re-added the custom CSS, it works now.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 23, 2025 at 7:08 am #31610It does!!!
MANY THANKS that it works now and for your great effort!
May 24, 2025 at 2:42 am #31613Hi, you are welcome! I am happy to help you.
If you like the theme, please rate it on Themeforest.
I would greatly appreciate 🙂
Regards!
SeaTheme – FAQs – WordPress Customization – Facebook -
AuthorPosts
- You must be logged in to reply to this topic.
