Dawn Theme - Embedding a Klaviyo Subscribe Page

I’m trying to embed a klaviyo subscribe page into a page in shopify dawn theme. I’ve managed to get the form into the page but its cut it off so you cant see the whole thing.

I can see you can embed sign up lists but this one is a subscriber list in klaviyo so there is no help on Klaviyo, hoping there’s a way to view through code in shopify. I’ve tried pasting the code into the main page file, adding custom CSS section but get the same result. Please help :slightly_smiling_face:

@Goodlivingonly - can you share this page link?

https://www.goodlivingonly.com/pages/competition

@Goodlivingonly - add this to base.css file and check

@media screen and (min-width:1020px){
iframe#klaviyo_subscribe_page{height: 220vh;}
}

@media screen and (max-width:1019px){
iframe#klaviyo_subscribe_page{height: 125vh;}
}

@media screen and (max-width:749px){
iframe#klaviyo_subscribe_page{height: 200vh;}
}

@media screen and (max-width:480px){
iframe#klaviyo_subscribe_page{height: 125vh;}
}

That didn’t work :disappointed_face: