This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
Need a code

I need to know what the code is for a space. example, if I have text left and pic right. how do I get the text next to the pic instead of above or below. Or I have a form like so
nameX---------
AdressX--------
phoneX-----

how would I line up the x shown above to look like this?

name--------
address-------
phone--------
or this
name ------
address --------
phone ------

Browser: ,4

Re: Need a code

Align text with image ... use the align attribute with the img tag. For example, to have everything aligned to the right with the image:
align="right">

If you want 'space' either side of an image, then use the hspace (horizontal space) attribute with the img tag. For example, 5 pixel spacing:
hspace="5">

To get space in text, use the non-breaking space character -  

Re: Re: Need a code

...or use a table with one row and two columns.