Problem with Image Info Box text not displaying on Firefox

Posted in: Newspaper
Post count: 234

Hi guys,
I have recently noticed that I lost the text of all my Image Info Box block. (on Firefox only, on Chrome it is fine)
Is it a known issue?
You can see the issue on that page, if you open it on a computer using firefox, on the side bar, you will see 3 images with an empty block below each image:
https://australie.bucket-list.fr/queensland-les-incontournables/

Do you know what could be causing that on your side? It was working fine on firefox for the past 4 years.
Thanks in advance for your help.

Post count: 35449

Hello,
This is related to some updates on Firefox, to fix it try this custom css:

@-moz-document url-prefix() {
.tdm_block_image_info_box .tdm-image-description {
position: relative;
}

.tdm_block_image_info_box .tdm-image-box {
height: auto;
}
}

Set the code in the theme panel > custom code > custom css

Thank you!

Post count: 234

Thank you Calin!
I have tried that but it seems like I can’t save any custom code css anymore. I get this square loading for the past 10 minutes :

View post on imgur.com

The theme and plug ins are all up to date.
Have you seen that before?

Thank you Calin.

Post count: 234

Even if I just reload the page with my existing css code and press save without changing anything, it doesn’t save and the loading icon keep loading forever.

Post count: 35449

Hi,
If you’re encountering an infinite loading screen after clicking Save Settings in the theme panel, the issue is likely related to admin-ajax.php. To diagnose the problem, please open your browser’s developer console and check for any error messages.

This behavior is commonly caused by admin-ajax.php being blocked by modSecurity, your hosting provider’s firewall, or certain security plugins or server modules.
Thank you!

Post count: 234

Hi Calin, sorry for the slow reply.
I have 2 websites and the infinite loading screen is only affecting one so I will keep investigating.

In the meantime, on the working website, I have tested your custom codes to fix the firefox issue with the image info box and it work but not entirely. It is good because the text is now visible but most of the images on the side bar are now not visible: https://tahiti.bucket-list.fr/que-visiter-a-tahiti-les-plus-beaux-endroits-a-ne-pas-manquer/

Would you know how to resolve that?

Is it possible for your team to report the issue to firefox? or build a reliable patch on your side to prevent firefox users to be affected by the missing text with image info box?

It worked fine for the past few years, it would be very helpful if a fix could be available.

Thank you very much Calin.

Post count: 234

In addition to my previous message
If I remove
.tdm_block_image_info_box .tdm-image-box {
height: auto;
}

I can see the images and the text, but there is now a big gap between the images and the text below.
https://tahiti.bucket-list.fr/que-visiter-a-tahiti-les-plus-beaux-endroits-a-ne-pas-manquer/

what could I do to get something that looks fine on firefox? similar to how it looks on chrome now.
Thank you

Post count: 35449

Hi,

Please remove the above css and try this one:
@-moz-document url-prefix() {
.tdm_block_image_info_box .tdm-image-description {
position: absolute;
top: inherit;
}
}

I hope this one will provide better results!

Post count: 234

FANTASTIC, it is working for my sidebar! Much appreciated

I noticed that it introduced an issue with the image infox box on my home page. It is supposed to look like this: https://imgur.com/ROEWGM6

but now with the custom code on firefox, the title and button are missing:
https://tahiti.bucket-list.fr/ near the bottom of the page

Thank you in advance for your help.

Post count: 35449

Hi,
If the problem wasn’t there before the CSS, the replace the code with this one:

@-moz-document url-prefix() {
.single .tdm_block_image_info_box .tdm-image-description {
position: absolute;
top: inherit;
}
}

Post count: 234

Thank you so much, it resolved the issue!
Is it a fix that you can roll into the next update by any chance to fix this issue for everyone?

Post count: 35449

Hi,
I added on our list and I hope that our developers to check it 😀
Thank you!

Post count: 234

Hi Calin, thanks to your precious advice, I have managed to fix the infinite loading on my second website by disabling/re-enabling a couple of security plug-ins.

So I have pasted the same css code from your last comment, but for some reason, on that website, the css code doesn’t make the text and button visible on my “image info box” blocks as you can see on Firefox on the side bar: https://australie.bucket-list.fr/visiter-sydney-le-guide-complet-des-incontournables/ for the campervan image and the plane image for example.

Would you know what could be causing that?

Thanks a lot.

Post count: 35449

Hi,
Please try this custom css:
@-moz-document url-prefix() {
.single .tdm_block_image_info_box .tdm-image-description {
position: absolute;
top: inherit;
}
.single .tdm_block_image_info_box .tdm-with-button .tdm-image-description {
top: 0;
}

}
I hope this will help you!

Post count: 234

Congratulations ! it works, thank you so much Calin!

Viewing 15 posts - 1 through 15 (of 15 total)
You must be logged in to reply to this topic.