View Full Version : Another Way To Align?


stinka
06-01-2003, 02:11 AM
Are there any other codes for aligning text or images besides: <p align="direction here">?

Because I want to align something on my site, but I don't want a space, and when I tried putting <align="left"> that didn't work because you needed the "p" there. So does anyone know any other aligning technique that aligns text/images? I've already tried "&nbsp;" and in this case, that doesn't work...

Does anyone get what I'm trying to say?

rainbowobsessed
06-01-2003, 02:15 AM
<div align="left"> should do what you want it to.

stinka
06-01-2003, 02:32 AM
yes, thank you....that's it. but how do i end it? because after that EVERYTHING is on the left. can i put </div align="left">?

Dude128
06-01-2003, 02:38 AM
</div> will do :)

stinka
06-01-2003, 06:40 PM
thanks to all of you.

Lakini's Juice
06-01-2003, 11:01 PM
<div style="left: 50px; position: absolute; top: 30px"> text or <img src="something.gif"></div>

Will align it 50 px from the left and 30 from the top. Just change the px amount to what you like... can also use :

<div align="center,left, or right"> text or <img src="something.gif"></div>

or

<span style="left: 50px; position: absolute; top: 30px"> text or <img src="something.gif"></span>

Sorry put it in quotes cause I don't know any other (quick) way to write html here...

stinka
06-02-2003, 12:47 AM
that's alright...thx!