HTML Problem?

Status
Not open for further replies.

boonncis

New Member
Messages
1
Reaction score
0
Points
1
I'm trying to Embed a forum from boards.net into my website, using IFrame
I want to get it to the size of the following example: boonipd.com/forum.html
I've edited my code to this:
HTML:
<html>
<body>

<iframe src="http://ncisboon.boards.net" width="300px" height="100px"> 
</iframe>

</body>
</html>
But the actual frame shows on the webpage like this: boonswat.x10.mx/en/Forum/

Any help?
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Hi,

Please could you try changing the "width" attribute to just "100%"? In the page you provided, it looks like the current "width" attribute is making the iframe overflow in the parent div.

Code:
<iframe src="http://ncisboon.boards.net" width="100%" height="100">

Thank you,
 
Status
Not open for further replies.
Top