Archived topic
Help to make my form format properly
1 reply · Started by Leif on September 1, 2020
Hi I am a CSS scrub. I have a form at the top of this page (green background + orange button). Is there a way to make that area disappear entirely on mobile?
I would implement it everywhere but I'm using this one as an example page :)
Hi Leif,
You can try adding this CSS code to your forms.
@media (max-width: 768px)
.signup-container {
display:none;
}
Here's how to add CSS. - https://docs.generatepress.com/article/adding-css/
Another solution would be to use the built-in hide-on-mobile class if it's possible:
https://docs.generatepress.com/article/responsive-display/#using-our-hide-on-classes
Let us know if it helps.