Hi there,
It is not possible with the conventional methods, but if you use the Flex layout of CSS it can be done.
You will need to add a unique class to the Row containing 2 columns. For example: middle
Then you will need to add a CSS code like this:
.middle .x-column {
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
}
I am not sure about how you setup your columns so the code above might not work. On that case please get back to us with the URL/User/Pass of your website using the Secure Note and tell us which Global Block to check and be able to give you proper code on this matter.
The difference will be the selector of the code but the flex code itself will be the same.
Thank you.