TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

April 25, 2024, 09:51:02 PM

Login with username, password and session length
Members
  • Total Members: 3,885
  • Latest: Growner
Stats
  • Total Posts: 195,173
  • Total Topics: 21,219
  • Online today: 319
  • Online ever: 3,540 (September 03, 2022, 01:38:54 AM)
Users Online

Request: Center bottom block

Started by JPDeni, July 12, 2006, 01:44:25 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

IchBin

Then do what everyone else does around here. Try. :) Open your index.template.php and add some code before the ending </body> tag, or right before the copyright code.

Allsomaliforum

im trying to add this, just before the </body> tag

<table border="0">
<tr>
<td>
<div id='vu_ytplayer_vjVQa1PpcFOP0-Iewrm2UhN23jqV-tBm87rF6kjY9wI='><a href='http://www.youtube.com/browse'>Watch the latest videos on YouTube.com</a></div><script type='text/javascript' src='http://www.youtube.com/cp/vjVQa1PpcFOP0-Iewrm2UhN23jqV-tBm87rF6kjY9wI='></script></td>
<td><!-- Begin: AdBrite -->
<style type="text/css">
   .adHeadline {font: bold 10pt Arial; text-decoration: underline; color: #666666;}
   .adText {font: normal 10pt Arial; text-decoration: none; color: #333333;}
</style>
<script type="text/javascript" src="http://ads.adbrite.com/mb/text_group.php?sid=508532&br=1&dk=72656c6174696f6e73686970735f385f325f776562">
</script>
<div><a class="adHeadline" target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=508532&afsid=1">Your Ad Here</a></div>
<!-- End: AdBrite --></td>
</tr>
<tr>
</table>



should i put echo tags in?, cos i did it as it is and its not showing up?

IchBin

Remember, its a good idea to use HTML with the standard double quotes. In your code you have a mix of them on different lines (single/double quotes).. Which causes problems with the echo statement.

You can just copy and paste this if you'd like:
echo '
<table border="0">
<tr>
<td>
<div id="vu_ytplayer_vjVQa1PpcFOP0-Iewrm2UhN23jqV-tBm87rF6kjY9wI="><a href="http://www.youtube.com/browse">Watch the latest videos on YouTube.com</a></div><script type="text/javascript" src="http://www.youtube.com/cp/vjVQa1PpcFOP0-Iewrm2UhN23jqV-tBm87rF6kjY9wI="></script></td>
<td><!-- Begin: AdBrite -->
<style type="text/css">
   .adHeadline {font: bold 10pt Arial; text-decoration: underline; color: #666666;}
   .adText {font: normal 10pt Arial; text-decoration: none; color: #333333;}
</style>
<script type="text/javascript" src="http://ads.adbrite.com/mb/text_group.php?sid=508532&br=1&dk=72656c6174696f6e73686970735f385f325f776562">
</script>
<div><a class="adHeadline" target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=508532&afsid=1">Your Ad Here</a></div>
<!-- End: AdBrite --></td>
</tr>
<tr>
</table>';