|
Posted by John L. on October 8, 2007, 6:52 am
Please log in for more thread options Corey Walker wrote:
> Hello:
>
> I am a webmaster for a non-profit organization. I do know some HTML,
> but I'm by no means an expert. Recently, many pages on our site were
> redesigned by a professional web designer, who volunteered his time for
> a one time improvement. Now, I'm trying to add a new page to our site,
> and make it look consistent by removing and replacing the text in an
> existing page. However, in the one page the links at the bottom page
> are centered and are in two neat lines, like the rest of the site. In
> my page, the links are squashed on the left hand side at the bottom. The
> pages I'm referring to are:
>
> http://www.reaps.org/Links.html (the links at the bottom of the page are
> formatted properly)
> http://www.reaps.org/publications/castings/castings2.html (the links are
> not displaying properly) .
>
> Like I said, I'm not an expert, and the professional designer has
> used a lot of HTML tags I'm not overly familiar with, such as <span>,
> and he also uses table tags in ways I'm not familiar with. Obviously,
> I've done something wrong, but I'm not sure what I've done. Perhaps some
> of you experts could compare the code of the two pages and let me know
> what I've done wrong. Also, could somebody explain what the <map> tags
> at the bottom of the page are supposed to do? I assume they have
> something to do with image maps, but there's no image maps at the bottom
> of our pages. I'm thinking it's useless code I can delete, but I'm not
> sure.
>
> Thanks,
> Corey
>
> P.S. The page is not a "live" page yet, and some of the links don't work
> yet, just so you all know. That's something I do know how to fix.
You appear to have missed out a couple of table tags.
The bit you need to change is just above the affected links in the
source code. Search for '<div align="center">' - then look for the bit
above that looks like this:
</span></td>
</tr>
<tr>
Then change it to look like this:
</span></td>
</tr>
</table></td>
</tr>
<tr>
|