Tagged: CSS
I have two half width columns but would like them stacked on top of one another on mobile and tablet. I have implemented the code detailed here: https://kriesi.at/documentation/enfold/columns/#custom-column-breakpoint
/* Custom breakpoint */
@media only screen and (max-width: 1023px) {
.responsive #top #wrap_all #custom-breakpoint .flex_column.col {
margin: 0;
width: 100%;
}}
However it’s still not appearing to work on tablet.
Hi aestheticare,
Thanks for giving us admin access.
The issue I found is that the style isn’t being fetched because of WP Optimize (which I have now purged the cache and deactivated the plugin).
Then replaced your code with this one:
@media only screen and (max-width: 1023px) {
.responsive #top #wrap_all #custom-breakpoint .flex_column_table {
display: block;
}
.responsive #top #wrap_all #custom-breakpoint .flex_column.col {
display: block;
margin: 0;
width: 100%;
}
}
Let us know if it helps.
Best regards,
Nikko
Thanks, it’s now working!
Hi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike