Click to See Complete Forum and Search --> : Text beside of pics


TboXx
09-21-2003, 05:15 PM
OK, everyones telling me not to use frames, i can deal with that. I use dreamweaver to design and im not at all an expert. I want to put text anywhere beside of a pic and center it or tab it without moving the pic. heres and example with the
my special simulated | | = part of a pic:

| |
| |
| |
| |
| |
| |
| |Only place text is allowed in dreamweaver which cannot be moved or spaced, or centered, or tabbed without moving the pic

heres what i want:

| |
| | Text here or anywhere which is centered or anything that i
| | want
| | and here
| | and here
| | text thats centered while the pic is left justified...
| |

Thanks - Mike
:confused:

pyro
09-21-2003, 05:29 PM
Something like this, maybe:

<img src="your.gif" width="50" height="50" alt="description" style="float: left;">
<p style="line-height: 50px;">text</p>

TboXx
09-21-2003, 06:04 PM
Well i put that in but it didnt work. How would i edit that to move the text to where i want? I mean someone told me to use something like e: or em: and it had 10 beside of it. I looked at www.htmlgoodies.com to see if that had the answer but the page is set up just like im talking about, his text is in different places. You see a navigation bar on the side and the text is offset from it. I looked at the code but its complicated as hell and im only a begginer. I know their has to be a simple way, anyone know?

S1L3NC3
09-21-2003, 09:06 PM
Dont know if im getting the question correctly or not, but why dont you just use a table?


<table>
<tr>
<td><img src="Your pic"></td>
<td width="xx"> Your text stuff here </td>
</tr>
</table>


Play with the td width value to make it wrap where you want it to.

MotherNatrsSon
09-21-2003, 09:17 PM
I think it is like this:

<img src="your.gif" width="50" height="50" alt="description" style="float: left;">
<p style="vertical-align: middle;">text</p>

That will align the text in the middle of the pic. Hopefully your pic is larger than 50px by 50px or you may only have a couple lines that actually center.

MNS