Penguin_Otaku
06-01-2003, 04:16 PM
Ok, please don't consider this advertising but I need to no if it's possible to have text, on one line, on opposite sides of the page without using a bunch of spaces. www31.brinkster.com/sanadahazuki/hazuki
Again, my site isn't even filled with content it's for a RPG character I have. What I mean is like this
over here
and like
this ok?
Or would I need to estimate spaces and do it manually?
Penguin_Otaku
06-01-2003, 04:46 PM
Ok, that last one didn't turn out like I wished. This is what I mean
Right---------------------------------------------Here
Minus the --
LesPaul59
06-01-2003, 05:25 PM
well you could do the align tag
well to center something you can use one of two tags:
<CENTER>Centered Text</CENTER>
or
<p align = "center">Centered text</p>
Penguin_Otaku
06-01-2003, 05:27 PM
I want don't want it in the center, but do you mean center it and then space?
LesPaul59
06-01-2003, 05:38 PM
yes you could do that, actaully. to make a space, you type in  , so you could do:
<center>    Hello</center>
That will make it two past the center
lefty
06-01-2003, 05:47 PM
Alternately, you could use divs to align your text. Maybe something like...
<div style="position:absolute; left:0px; top:0px;">
text on the left goes here
</div>
<div style="position:absolute; right:0px; top:0px;">
text on the right goes here
</div>
You can obviously change the numbers around to where you want them on the page.
LesPaul59
06-01-2003, 05:57 PM
o yeah good point...and the weird space in my prior post - i said you need to type in   to do a space, but LEIA uses it too! i will space out each letter, but dont do that if you wanna use this for any further HTML coding.
& n b s p
that will give ya a space
YellowYoshi
06-01-2003, 06:17 PM
You can also nest the text with tables, like this:
<table width="100%">
<tr>
<td align="left">Left Text</td>
<td align="center">Centered Text</td>
<td align="right">Right Text</td>
</tr>
</table>
You can also add widths and heights, and even color! Customize it acording to your needs.
Penguin_Otaku
06-01-2003, 06:54 PM
Arigato, Yellow Yoshi! That's what I needed, the column code. TY!