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
Pass: biangu
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:
Solution Provided:
base.css file at line 3028.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.
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
Pass: biangu
Can you please add the page URL where you are getting the issue?
Hi @MT27
On the base.css file line 3028, change the css as below.
.image-with-text__text {
display: block;
}