Archived topic
A way to make text box smaller mobile
3 replies · Started by John on February 15, 2021
Hi,
IS there an easy way to change the width of the text box on mobile? I find that the text on every page is too far to the sides. It needs to be a bit smaller. Is there a way to do this fast instead of doing it in elementor which will take a long time? \
Thanks
Hi there,
can you share a link to page where i can see the problem?
Yes its on pages like the one i sent you on my mobile the text is all the way to the edges of the screen.
Hmmm... as the entire page is an Elementor template it removes any theme controls for things like padding.
You could use some CSS to add padding to all Elementor pages for mobile:
@media(max-width: 768px) {
.elementor-page .site-content {
padding: 0 20px;
}
}