Can you tell me please how I can create about 10 to 15 hyperlinks (luinks to other sites) on my home page in a way that would make them organized, evenly spread out and also small. I want the visitor who clicks on these links to have the web page open up in another frame. Right now, the only way I know how to d this is by pasting a code within a Code Fragment on a page and then lining them up by "guess and see" method. Here is an example of a code that I use that gets the site to pen up in another window: "<a href="http://www.abcfundraising.com/?s=TimeSavers" target="_blank"><font size="2" face="arial">Fundraisers & Fundraising Ideas!</font></a>"
There must be a better way to organize links (or these Code Fragmnets) so that they line up evenly. I heard that the table may be used but how??
Well there's the answer to your earlier post! The formatting is different
because you code some links and Publisher codes others. For one thing you
don't want to use 1 code box to 1 link. You use one box for all the links.
Draw the code box on the page where you need it and in roughly the dimension
it will occupy and enter the desired code.
I assume you want something like this -
<table border="0">
<tr>
<td>
<p align="center"><font face="Arial">
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a><br>
<a target="_blank" href="http://www.linktoaddresshere.com">this is my
hyperlinked text here</a></font></td>
</tr>
</table>
If you are going to be codeing I recommend strongly that you refer to the
html learning articles I have on my sites 'web design how to' section.

Signature
David Bartosik - MS MVP
for Publisher help:
www.davidbartosik.com
enter to win Pub 2003:
www.davidbartosik.com/giveaway.aspx
> Can you tell me please how I can create about 10 to 15 hyperlinks (luinks to other sites) on my home page in a way that would make them organized,
evenly spread out and also small. I want the visitor who clicks on these
links to have the web page open up in another frame. Right now, the only way
I know how to d this is by pasting a code within a Code Fragment on a page
and then lining them up by "guess and see" method. Here is an example of a
code that I use that gets the site to pen up in another window: "<a
href="http://www.abcfundraising.com/?s=TimeSavers" target="_blank"><font
size="2" face="arial">Fundraisers & Fundraising Ideas!</font></a>"
> There must be a better way to organize links (or these Code Fragmnets) so that they line up evenly. I heard that the table may be used but how??