Hey,
I have used the new “Layout” feature in my “about.yml” Blueprint:
layout:
type: layout
layouts:
- "1/2, 1/2"
fieldsets:
- heading
- text
- image
settings:
fields:
class:
type: text
width: 1/2
id:
type: text
width: 1/2
image:
label: Background image
type: files
I’ve added some Text and an Image:
I wanted to know if it is possible to give each column seperate classes? For Example:
<section class="grid-cols-1 md:grid-cols-2 md:gap-8">
<div class="order-last md:order-first"> </div> //This should be the left column
<div class="order-first md:order-last"></div> //This should be the right column
</section>