Suspension
10-26-2005, 01:59 AM
Ok, on my page thing im working on all the words are on the left side and i was wondering if theres a code to move them to the middle or right.
Also i was wondering if theres a code for the text to move back and forth and stuff.
onnet5
10-27-2005, 02:13 PM
If you want to centre it then do this.
<center>text here</center>
If you wanted to be very precise then you could use absolute positioning.
Hostyoo
10-28-2005, 04:39 AM
<P align="right"> text here
<P align="center"> text here
Monkey Bizzle
10-28-2005, 09:32 PM
<P align="right"> text here
<P align="center"> text here
if you are going to do that, then make sure you close the p tag so that the browser is positive of where to stop that alignment...
<p align="left">text here</p>
<p align="center">text here</p>
<p align="right">text here</p>