Text beside of pics

liunx

Guest
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 <br />
my special simulated | | = part of a pic:<br />
<br />
| |<br />
| |<br />
| |<br />
| |<br />
| |<br />
| |<br />
| |Only place text is allowed in dreamweaver which cannot be moved or spaced, or centered, or tabbed without moving the pic<br />
<br />
heres what i want:<br />
<br />
| |<br />
| | Text here or anywhere which is centered or anything that i <br />
| | want<br />
| | and here<br />
| | and here<br />
| | text thats centered while the pic is left justified...<br />
| |<br />
<br />
Thanks - Mike<br />
:confused:<!--content-->Something like this, maybe:<br />
<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"your.gif" width="50" height="50" alt="description" style="float: left;"><br />
<p style="line-height: 50px;">text</p><!--content-->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 <!-- w --><a class="postlink" href="http://www.htmlgoodies.com">www.htmlgoodies.com</a><!-- w --> 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?<!--content-->Dont know if im getting the question correctly or not, but why dont you just use a table?<br />
<br />
<br />
<table><br />
<tr><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"Your pic"></td><br />
<td width="xx"> Your text stuff here </td><br />
</tr><br />
</table><br />
<br />
<br />
Play with the td width value to make it wrap where you want it to.<!--content-->I think it is like this:<br />
<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"your.gif" width="50" height="50" alt="description" style="float: left;"><br />
<p style="vertical-align: middle;">text</p><br />
<br />
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.<br />
<br />
MNS<!--content-->
 
Back
Top