sshapirocranford Posted August 5 Share Posted August 5 So here's the code, which should display four blocks. <div class="iframe-wrapper" style="display: flex; min-width: 300px; justify-content: center;"> <iframe id="iframeId" style="border: none; display: block; height: 450px; width: 100%" title="Going for the Gold" srcdoc="<vega-showcase-widget showcase-id="601ca393-3fa3-48d4-85cb-580be7c38583" vega-host="crf-stella.na4.iiivega.com" display-amount="4" max-amount="12" description=""> </vega-showcase-widget> <script type="text/javascript" defer src="https://vega-widgets.s3.us-east-2.amazonaws.com/vega-showcase-widget/prod/pendo-showcase-widget.js"></script>"> </iframe> </div> But it only shows one, no matter what I do. Link to comment
creedon Posted August 5 Share Posted August 5 The code has syntax errors, improperly encoded characters. Use the following. <div class="iframe-wrapper" style="display : flex; min-width : 300px; justify-content : center;"> <iframe id="iframeId" style="border : none; display : block; height : 450px; width : 100%;" title="Going for the Gold" srcdoc=" <vega-showcase-widget showcase-id="601ca393-3fa3-48d4-85cb-580be7c38583" vega-host="crf-stella.na4.iiivega.com" display-amount="4" max-amount="12" description=""> </vega-showcase-widget> <script type="text/javascript" defer src="https://vega-widgets.s3.us-east-2.amazonaws.com/vega-showcase-widget/prod/pendo-showcase-widget.js"> </script> "> </iframe> </div> Let us know how it goes. tuanphan 1 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment