Link question

S

Shirley

I have a jpeg on my home page with links around it to various pages.
http://mirielthreadsandjules.com
What I want to do is arrange the links in an arc around the photo from 9-3
o'clock. I can't seem to get it. Everything I've tried has dropped them all
over the place. Someone mentioned that maybe a table within a table would
work. Can it be done?
 
K

Kevin Spencer

You have a couple of choices here. Remember, we are limited by what HTML can
do. You can use a table, or nested tables, to approximate the positions, or
you can use CSS styles and absolute positioning. Note, however, that using
absolute positioning can be tricky, esp. in multiple screen resolutions.

One more thing: NEVER use non-breaking spaces ( ) to position anything
in a web page.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
S

Shirley

Thanks, Kevin :)
Kevin Spencer said:
You have a couple of choices here. Remember, we are limited by what HTML can
do. You can use a table, or nested tables, to approximate the positions, or
you can use CSS styles and absolute positioning. Note, however, that using
absolute positioning can be tricky, esp. in multiple screen resolutions.

One more thing: NEVER use non-breaking spaces ( ) to position anything
in a web page.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
M

Mike Mueller

Shirley,
Nesting tables is the way to go. Here is a <very> quick
sample I created for you

http://www.lannonfire.com/Developement/Sample.htm

Mike


:I have a jpeg on my home page with links around it to
various pages.
: http://mirielthreadsandjules.com
: What I want to do is arrange the links in an arc around
the photo from 9-3
: o'clock. I can't seem to get it. Everything I've tried has
dropped them all
: over the place. Someone mentioned that maybe a table
within a table would
: work. Can it be done?
:
:
 
S

Shirley

Wow!
Thanks....I can't believe how nice that was of you to do that for me. I
really appreciate it..:))
 
Top