View Full Version : I dont know....


Cloud415
03-16-2003, 08:43 AM
Hi Everyone,

I need your help once again. I have been searching for hours for something that I dont even know how it's done or what it is called. There this site (http://torn-world.org/behr/) that has what I am looking for it the content and links on the right side. How do I get around to doing this.

Please Help

epolady
03-16-2003, 08:52 AM
I'm not seeing anything really special about that splash page, just the image is align="left" and the text, etc is align=right...

Did I miss something?

Cloud415
03-16-2003, 05:30 PM
LOL! Okay, I feel so dumb for asking. I have tried to make my text in my website to align on the right side but it's not working. How do you do it? I am just learning html and i need all the help i can use.

Sheila
03-16-2003, 05:32 PM
<p align="right">Text



If it still doesn't work, you could try using tables....
http://www.lissaexplains.com/table.shtml

Cloud415
03-16-2003, 05:46 PM
I dont get it!? How do use tables to align things?
Do i just do this
<table>
<tr>
<td>
Blahhh Blahhh Blahh
</table>
</tr>
</td>

What goes between the table tags so that the text aligns on the right.
I tried
<p align="right">blah</p>
But when use more than one it's like i missed a whole line. I want it to be close together. Like a paragraph. not like single sentences...

It looks like this:

Blah

Blah...

pb&j
03-16-2003, 06:00 PM
The example site you listed did not use tables. Just the align things.

If you want to use a table, you could try this...

<table width="100%"><tr><td width="50%" valign="top">
image goes here.
</td><td align="right" valign="top">
text stuff goes here.
</td></tr></table>