Hi richnyc30,
The class on BLOCKK does not overwrite your class. Could you send me the admin account for further checking?
If you use this class, you need to add the following code to the site:
.go2col {
display: grid;
gap: 10px;
grid-template-columns: 1fr 1fr;
grid-template-areas:
'myArea .'
'myArea .';
}
.go2col p:first-child {
grid-area: myArea;
}
.go2col p {
margin-bottom: 10px;
}