Help with poll and iframe layout

liunx

Guest
i have a newspost thing and a poll and i put it on using this code<br />
<br />
<br />
<br />
<CENTER><IFRAME SRC=http://www.htmlforums.com/archive/index.php/"news.shtml" SCROLLING="no"></IFRAME></CENTER><br />
<DIV ALIGN="right"><?php<br />
include("poll.php");<br />
run_poll("1044496743", $HTTP_POST_VARS, "");<br />
?> <br />
<br />
<br />
and i want to make it so the news is right next to the pol because on my site you cant even see my poll unless you scroll down:confused: please help<br />
<br />
thanks<!--content-->Hmm something like this?<br />
<br />
<table><br />
<tr><br />
<br />
<td><CENTER><IFRAME SRC=http://www.htmlforums.com/archive/index.php/"news.shtml" SCROLLING="no"></IFRAME></CENTER></td><br />
<td><DIV ALIGN="right"><?php<br />
include("poll.php");<br />
run_poll("1044496743", $HTTP_POST_VARS, "");<br />
?></td><br />
</tr><br />
</table><br />
<br />
If the IFRAME really does need to be in the centre of page left-to-right, then insert this where the blank line is in the example above:<br />
<br />
<td><img src=http://www.htmlforums.com/archive/index.php/"onepixel.gif" alt="" height="xx" width="yy" border="0"></td><br />
<br />
Adjust xx and yy to be the size you require. Make a file called onepixel.gif that consists of a single transparent (or same colour as the page background) pixel, whic gets stretched to the size required in use.<!--content-->
 
Back
Top