I’ve built a responsive page, but the right section appears white on smaller screens. What could be causing this issue, and how can I fix it?
1 Like
Issue is releated to width & height it seems. Maybe some max width is set on the parent div due to which it didn’t expand etc.
Best way to find is, by opening the debugger and see in which div the white section is included, then check it’s width, it’s width or min-width needs to be 100% so that it expands to the whole section instead of the width of the text. Maybe “Fit width to content” is checked which shouldn’t be checked for parent div.