Hi all!
Currently on DAWN theme and I added a Google map embed into a custom html content block, but don’t know how to get it centered. Any help would be appreciated!
Hi all!
Currently on DAWN theme and I added a Google map embed into a custom html content block, but don’t know how to get it centered. Any help would be appreciated!
@tommy6030 in that custom css section you can add following css and check
iframe{text-align:center; justify-content:center;}
Rather try this – put it into section “Custom CSS” setting:
iframe {
margin: 0 auto;
display: block;
}
Or alternatively:
div:has(>iframe) {
text-align: center;
}
That didn’t work either. Darn it!
@tommy6030 can you please share this page link?
I’ve amended the code above – it should work now.
That worked! Thanks a million