cameeob2003 Posted August 1, 2006 Share Posted August 1, 2006 I am trying to run the following code:[code]<table border="0" cellpadding="0" cellspacing="0"><tr><td background="images/news_'. $table_background .'.jpg" height="19" align="left" valign="bottom" align="center"><font style="font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#CCCCCC"/>'. $title .' '. $date .'</td></tr><tr><td align="left" background="images/news_2.jpg"><font style="font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#000000"/>'. $content .'</td></tr><tr><td><img src="images/news_'. $td_background .'.jpg" width="652" height="17" alt=""></td></tr></table>[/code]As you can see I want the " '. $title.' " and the " '.$date.' " to be seperated on oposite sides of the <td> span but im not sure how to acomplish this. Any help is appreciated. Link to comment https://forums.phpfreaks.com/topic/16233-different-text-positions-in-same/ Share on other sites More sharing options...
yana Posted August 2, 2006 Share Posted August 2, 2006 You'll have to squeeze in a table inside the <TD></TD> tags and make sure you set the width of the table to 100%[code]<td background="images/news_'. $table_background .'.jpg" height="19" align="left" valign="bottom" align="center"><table style="width:100%;font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#CCCCCC"><tr><td>'. $title .'</td><td align="right"> '. $date .'</td></tr></table></td>[/code] Link to comment https://forums.phpfreaks.com/topic/16233-different-text-positions-in-same/#findComment-67847 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.