"Wrapping Text?"

G

Guest

Using Frontpage 2002 and am a little familiar with coding but certainly still
in the learning stages. Question: Can text be wrapped around a gif within a
table cell? If so, how? If not, is there another way to achieve this? TIA,

Don
 
G

Guest

Thanks for the quick reply Dan....I'll take a look....get back to you if I
have any further questions about it.....tks again.... Don
 
P

P@tty Ayers

Don said:
Using Frontpage 2002 and am a little familiar with coding but certainly
still
in the learning stages. Question: Can text be wrapped around a gif
within a
table cell? If so, how? If not, is there another way to achieve this?
TIA,

Sure. The fact that it's in a table cell isn't important (assuming the cell
doesn't have any alignment properties set, and there's enough room for the
image and the text).

There are two ways, one using straight HTML, the other using CSS. The CSS
way allows you to add padding around the image, as much as you need on each
side, so it's usually preferable. It works fine in the current major
browsers.

Using Code View...

Using CSS, to align the image to the left:

<img src="myimage.gif" width="100" height="100" style="float: left; padding:
10px 10px 10px 10px;">

The padding values go in this order: TOP, RIGHT, BOTTOM, LEFT. You can make
them whatever you like.

Hope that helps,
 
G

Guest

Hi Patty,

Thanks for the response and I'll look very closely at what you posted. I
was able to sort of de-cipher the code in the link that was posted above and
I've been able to make the CSS work, although I have to admit, I've got a lot
of studying to do. A few things that were used that are brand new to
me...lol...as though a lot of this isn't...haha

Thanks again, and you might be hearing me yell for help again....:)

Don
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top