View Full Version : Place an Iframe page somewhere on a Vbulletin site.
lamur
02-11-2011, 07:32 PM
I want to create an Iframe on my Vbulletin site. But I want it underneath all the information. LIke down low where it says Powered by Vbulletin x.x.x.
I've tried to use the generic <iframe> tag line but it don't seem to work and I am stumped as to what I would need to do? Thanks for any help!
your24hourstore
02-11-2011, 10:23 PM
Create a new template named custom_whatever
call it with this /misc.php?do=page&template=whatever
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
<title>Four States Weather @ MSN.com</title>
<link rel="stylesheet" type="text/css" href="{vb:var vbcsspath}vbulletin-formcontrols.css" />
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div class="blockbody">
<div class="blockrow">
<center>
<table width="500" border="0">
<tr>
<td height="690"><iframe src="www.whatever.com" name=iframe scrolling=yes
style="position:relative; left: 25px; top: px; width: 999px; height: 690px;" allowtransparency="true"></iframe></td>
</tr>
</table>
</center>
</body>
</div>
</div>
{vb:raw footer}
</body>
</html>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.