MyBB Community Forums

Full Version: iFrame entire forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I iFrame my entire forum.
Because I want to add a radio without it re freshing every time you navigate to a thread.

Please and thanks.
Create an index.html page and place the forum iframe code in the page, then place whatever you want above or below it.

Be advised though, that search engines do not spider inside of iframes, and if you want your forum to be indexed and ranked by Google and the others, you do not want to do it.

The code would look like this:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Example</title>
</head>
<body>
<iframe name="I1" src="Your Forum URL" width="100%" height="Determined by number of forums and height">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
<br />
Your Radio Code
</body>
</html>