Centering ads

Status
Not open for further replies.

Chris

New Member
Messages
1,538
Reaction score
0
Points
0
If you are using HTML, put
Code:
<center> then </center>

If you are using PHP, put it in echos:
Code:
echo "<center>";
(ad code goes here)
echo "</center>";

If for some strange reason, you want to put PHP code in an HTML page, add the ?php and ? tags.
Code:
<?php 
echo "<center>";
(ad code goes here)
echo "</center>"; 
?>
 
Status
Not open for further replies.
Top