Bootstrap grid in gutenburg? #430
Unanswered
mindstomedia
asked this question in
Q&A
Replies: 2 comments
-
I highly recommend trying out this plugin to get Bootstrap blocks into Gutenberg. I use it on every website I build. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can use mixins https://getbootstrap.com/docs/5.3/layout/grid/#mixins .wp-block-columns {
@include make-row();
}
.wp-block-column {
@include make-col-ready();
@include media-breakpoint-up(lg) {
@include make-col(6);
}
}
:where(.wp-block-columns.is-layout-flex) {
gap: 0;
} Works fine for All other columns ( |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to utilize the bootstrap grid system in my Gutenberg editor.
I created a group in ADDITIONAL CSS CLASS(ES) I gave it row
I introduced an image block and paragraph block and gave them col classes, when I apply col-6 or other sizes it works properly.
is wrapped in a container.I am unable to get these blocks to appear as a row.
Beta Was this translation helpful? Give feedback.
All reactions