Hi, I'm working on my first app for some while and wnated to start using a bit of a layout now.
Tables all work fine also setting the height and width but aligning text seems to be ignored. Anybod knows if I do something wrong?
Here a sample of my code:
<td width="216" height="104" align="right">
<fb:name uid="<? echo $user ?>" useyou = "false" linked = "false" /></td>
<td width="75" align="center">
<fb:profile-pic uid="<? echo $user ?>" height="75" linked="false" />
</td>
would be great to hear your suggestions,
Peter
Offline
Replace align="right" and align="center" with style="text-align: right;" and style="text-align: center;"
Offline
great, Thank you very much! That did the job!
Offline