It only shows the top of the table and is not centered. Here is the custom liquid code:
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Best regards,
Devcoder ![]()
3cd2f0.myshopify
0954
Your table is fine. A line of code in your theme is shrinking every embed down to a thin strip, so you only see the top rows. That same line stretches it full width, which is why it is not centred.
Replace the code in your Custom Liquid section
- Online Store > Themes > Customize.
- Click the Custom Liquid section that holds the table.
- Select everything in the Liquid code box and delete it.
- Paste this in, then Save.
<div class="table-embed">
<iframe class="table-embed__frame" frameborder="0"
src="https://1drv.ms/x/c/6c8c0ee35882df16/IQTDHycXpWMKQ4xeR0p4pukiAepSFmgUzIEge2l6v3Q2370?em=2&wdAllowInteractivity=False&Item=Table1&wdHideGridlines=True&wdDownloadButton=True&wdInConfigurator=True&edaebf=rslc0"></iframe>
</div>
<style>
.table-embed {
max-width: 100%;
overflow-x: auto;
text-align: center;
}
.table-embed__frame {
width: 700px !important;
max-width: none !important;
height: 460px !important;
display: inline-block;
border: 0;
}
</style>
That is your own OneDrive link already in there, so nothing to swap.
Want the table bigger or smaller? Change 700 (width) and 460 (height).
Optional, but worth doing
- Online Store > Themes > … > Edit code.
- Open layout > theme.liquid and scroll to the very bottom.
- Just above there is one line starting with
<style> iframe {. - Delete that line and Save.
That line is what caused this. It will do the same to any video or map you embed later.
Tested on a Dawn store with your embed
Wow, awesome. Completely fixed the problem and future problems. Very thorough and easy to follow directions. Thank you so much.



