- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Aug 31, 2022 06:32 AM
Hi all. I am attempting to embed a grid into a WordPress website and it seems that there is a width limitation. Is there a way to increase the dimensions of the grid in Wordpress? Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Aug 31, 2022 08:58 AM
When you create the embed code initially, it comes with a width="100%"
property.
So if you have not edited that, then the iframe should expand to the full width of the container (whatever that might be) that you nested it under. So there’s a good chance the limitation you are bumping into has to do with the structure of your wordpress site.
If I just stick that embed code into a flat HTML document:
My grid view will expand to fill the entire width of my browser window:
So you need to look at the structure of your wordpress site, and see what you are placing the iframe inside of. Whatever the maximum width of that container is (it’s very likely a <div>
), that will also be the maximum width of your embedded grid.