html coding help

jusama14

New Member
Messages
182
Reaction score
0
Points
0
I have this little quicktime player on my site...and it keeps putting it in the center of the page...how do i make this player not show up or put it at the very bottom of the page? This is the code

<table width="320" border="0" cellspacing="0" cellpadding="0"><tr align="center"><td><a href="http://www.greenermusic.com/myspace_songs.cfm" target="_blank"><img src="http://www.greenermusic.com/images/gimages/banners/1.gif" border="0" height="1" ></a></td></tr><tr align="center"><td><embed name="RAOCXplayer" src="http://cricket.x10hosting.com/Web_Song/%2007%20Jaan%20Pay%20Bhi.mp3" width="87" Height="17" ShowControls="1" ShowStatusBar="1" AutoSize="false" EnableContextMenu="0" DisplaySize="0" AUTOSTART='True' LOOP='0'></embed></td></tr><tr><td><font size="-1" face="Arial, Helvetica, sans-serif" color="#000000"></font></font></td></tr></table>

Thanks.
 

saachi

New Member
Messages
186
Reaction score
0
Points
0
Thats some messy html right there, but its easy to see why its centering - because its being told to by the second align="center". Just remove it and it won't center. If you just want the music to play without a player visable just add hidden="true" to the embed element.
 

jusama14

New Member
Messages
182
Reaction score
0
Points
0
Okay thanks a lot...would this be the code i would use to play a video?
 

oab

New Member
Messages
918
Reaction score
0
Points
0
HTML:
<table width="320" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="http://www.greenermusic.com/myspace_songs.cfm" target="_blank"><img src="http://www.greenermusic.com/images/gimages/banners/1.gif" border="0" height="1" ></a></td>
</tr>
<tr>
<td><embed hidden="true" name="RAOCXplayer" src="http://cricket.x10hosting.com/Web_Song/%2007%20Jaan%20Pay%20Bhi.mp3" width="87" Height="17" ShowControls="1" ShowStatusBar="1" AutoSize="false" EnableContextMenu="0" DisplaySize="0" AUTOSTART='True' LOOP='0'></embed></td>
</tr>
</table>
or (without the banner) this one should be invisible:
HTML:
<table width="320" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><embed hidden="true" name="RAOCXplayer" src="http://cricket.x10hosting.com/Web_Song/%2007%20Jaan%20Pay%20Bhi.mp3" width="87" Height="17" ShowControls="1" ShowStatusBar="1" AutoSize="false" EnableContextMenu="0" DisplaySize="0" AUTOSTART='True' LOOP='0'></embed></td>
</tr>
</table>
or this should definetly be invisible:
HTML:
<embed hidden="true" name="RAOCXplayer" src="http://cricket.x10hosting.com/Web_Song/%2007%20Jaan%20Pay%20Bhi.mp3" width="87" Height="17" ShowControls="1" ShowStatusBar="1" AutoSize="false" EnableContextMenu="0" DisplaySize="0" AUTOSTART='True' LOOP='0'></embed>
 
Last edited:
Top