Why is the image with text section not displaying on my website?

Topic summary

A user copied their website and discovered that the “image with text” section is malfunctioning—only the image displays while the title and text are missing.

Issue Location:

  • Problem occurs on a product page (Alexander the Great AR Hoodie)
  • Affects the image-with-text component specifically

Solution Provided:

  • Modify the base.css file at line 3028
  • Change the CSS property for .image-with-text__text class to display: block;

This appears to be a CSS display property issue that prevents text elements from rendering, likely introduced during the site duplication process.

Summarized with AI on November 12. AI used: claude-sonnet-4-5-20250929.

Hi I made another copy of my website and in the current one, the section image with text is not displaying. Nither the title or text (only the image). Can you please help me fix this. Thank you

URL: https://matibrnd.com/

Pass: biangu

@MT27

Can you please add the page URL where you are getting the issue?

https://matibrnd.com/products/alexander-the-great-ar-hoodie

Hi @MT27

On the base.css file line 3028, change the css as below.

.image-with-text__text {
display: block;
}