shoutbox

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
I finally got it right with the footer (footer went normal again). Now there is another small problem. The code is like this:

HTML:
<!-- $Id: most_poster.html,v 1.1 2007/04/04 09:33:30 angelside Exp $ //-->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
 <td class="cat" colspan="2"><h4>Shoutbox</h4></td>
</tr>
<tr>
<script type="text/javascript">
function openshout() {
window.open ("http://jagf.pcriot.com/chat/index.php","shout","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=160,height=630")
}
</script>
<div align="center"><input type="button" class="button" onclick="javascript:openshout()" title="Click For Mini Chat" value="Add Shout" /></div><br />
<div align="center"><iframe frameborder="0" id="tag" name="tag" marginheight="2" marginwidth="2" style="border:0px" width="160" height="250" src="http://jagf.pcriot.com/chat/shouts.php">Sorry your browser dose not support Iframes.</iframe></div>
</tr>
</table>
<br />

But the browser executes it this way:

HTML:
<!-- $Id: most_poster.html,v 1.1 2007/04/04 09:33:30 angelside Exp $ //-->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<script type="text/javascript">
function openshout() {
window.open ("http://jagf.pcriot.com/chat/index.php","shout","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=160,height=630")
}
</script>
<div align="center"><input type="button" class="button" onclick="javascript:openshout()" title="Click For Mini Chat" value="Add Shout" /></div><br />
<div align="center"><iframe frameborder="0" id="tag" name="tag" marginheight="2" marginwidth="2" style="border:0px" width="160" height="250" src="http://jagf.pcriot.com/chat/shouts.php">Sorry your browser dose not support Iframes.</iframe></div>
</tr>
<tr>
 <td class="cat" colspan="2"><h4>Shoutbox</h4></td>
</tr>
</table>
<br />

The block title is under the shoutbox instead of over. You can take a look here: http://jagf.pcriot.com
 
Top