I am hoping to limit views of multi-column layouts to landscape orientation on larger tablets or on desktop. I have tried applying the CSS below to Formidable/Styles/Custom CSS/Add Custom CSS and a few other variations without any luck. Should this work as written here?
@media screen and (max-width: 1350px) {
.column {
width: 100%;
}
}
Is it possible to apply a rule like this to the formidable elements of the site and not have it be in the site-wide style sheet? Thanks.
Are you familiar with CSS Grid? Formidable's default display is CSS Grid. You have to use your browser's inspection tool to find the correct CSS class you want to change, then add the custom CSS. If you're not familiar with CSS grid layouts, see this: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
I'm just now learning about them, thanks for sharing the resource.
Please login or Register to submit your answer