Can someone help me center my iframe map?

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;}
1 Like

That didn’t work unfortunately :frowning:

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!

1 Like

@tommy6030 can you please share this page link?

I’ve amended the code above – it should work now.

That worked! Thanks a million

1 Like