I recently embedded an iframe of a form that I would like to use on my site. How can i change the location of the iframe on the page? It is currently overlapping other features of the site.
Thanks
I recently embedded an iframe of a form that I would like to use on my site. How can i change the location of the iframe on the page? It is currently overlapping other features of the site.
Thanks
You can use an absolute positioning of the iframe to give an exact position [left and top] to position the frame in.
HTHCode:<iframe src="myframe.html" width="300" height="100" style="position: absolute; left: 200px; top: 200px;"></iframe>![]()
- Josh
Depending on your requirements, you might also need to addz-index:-1000;to thestyle= "...attribute in JShor's code suggestion.
Bookmarks