Text issue on mobile

HI there

I am finding an issue with text… everything ok on desktop, but when on mobile the text goes off its own section, thus “invading” the section below.
In the screenshot you can see the text coming from two section above

thanks

Hello Riccardo,

Thanks for asking. :slight_smile:

I see that you are using X Theme version 6.3.6 and Cornerstone 3.3.8. To avoid any conflicts and compatibility issues, please upgrade to X Theme version 6.4.2 and Cornerstone 3.4.2. After that please clear cache and then see how it goes. For update related instructions, please take a look at following resource.

Thanks.

hi

thanks for answering

I have installed a child theme, what will happen if I update? Will I need to update the child theme too?

I am up to date and I cleaned the cache, but the problem still stays… any other ideas?

Any suggestion?

Hi There,

This issue occurs because of this custom CSS:

#x-section-1 {
    height: 100vh;
    width: 100vw;
}

Please change it to this:

@media (min-width: 980px){
	#x-section-1 {
	    height: 100vh;
	    width: 100vw;
	}
}

The @media query will prevent this custom CSS from the mobile version. For more information, please take a look at this:

Hope it helps :slight_smile:

hi, yes, it is ok now, thanks!

You’re welcome, Riccardo.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.