How to align to center div class in Custom HTML section

Hi I am having trouble getting a custom content section to align to the center of the home page https://sp-oprema.myshopify.com/.

<div class=" calconic-calculator" data-calculatorid="611a26fadb5cac0021b81d69"

Thank you

Sasa

1 Like

@sakki

Please add the following code at the bottom of your assets/theme.css file.

.calconic-calculator{
display: flex;
justify-content: center;
}

Hope this works.

Thanks!

2 Likes

Thank you so much!!!

1 Like

Beautiful! You can also try writing this inline like I did. I had a simple text block and made the opening div:

Worked like a charm!! Thank you.

David