6-columns break directly to 1 column
-
I have a 6-column row and it is breaking directly to 1 column. I would like it to flow and break responsibly, to at least include a 2-column break.
With the gutenberg columns, I was able to accomplish this by putting the following within my 640 media area:
.wp-block-column {
flex: 1;
margin-bottom: 1em;
flex-basis: 50%;
min-width: 0;
word-break: break-all;
overflow-wrap: break-word;
}By inspecting the elements, I do see an element:
#kt-layout-id_4f9392-8e > .kt-row-column-wrap {
padding-left: 0px;
padding-right: 0px;
max-width: 1138px;
margin-left: auto;
margin-right: auto;
}
But cant seem to change the wrapping
- The topic ‘6-columns break directly to 1 column’ is closed to new replies.