Tagged: Break Point, column
Hi
Help needed…
I am trying to set up a break point for three columns to make them appear one under another after specific screenwidth is reached (under 880px). Unfortunately there is no such option available in “edit column” window.
Thanks in advance.
Hey Autostopowicz,
Please perform the below steps:
1. Enable “Show element options for developers” from Enfold theme options > Layout Builder.
2. Add a color section element and give it a unique ID such as “breakpoint880”.
3. Add 3 1/3 columns inside the color section and give it a custom class name such as “col”.
4. Add the below CSS to your site.
@media only screen and (max-width: 880px) {
.responsive #top #wrap_all #breakpoint880 .flex_column.col {
margin: 0;
margin-bottom: 20px;
width: 100%;
}}
Best regards,
Vinay
Hi Vinay
The color section as a fantastic element, but in my case it created additional spaces that I would have to get rid of using CSS. So I decided to use Your code without color section. And it works wery well.
The topic can be closed.
Thank You and have a good day.