Ok, you wanted nit-picky, so here goes:
1 - you need to validate your code, you've got a lot of errors, mostly stemming from not adhering to the rules of using an XHTML Doctype.
2 - The <font> and <center> tags are deprecated and should NOT be used in an XHTML document.
3- about that <font> tag -- it's horrendous code like this:
Quote:
|
<FONT face=Georgia size=3> B ackpacking the
|
Get rid of the nasty <font> tag, and use CSS for fonts and styling fonts. The "size=3" should be replaced by a % or em using CSS ,and spacing should be achieved NOT with a bunch of but with CSS margins and padding.
4 - <div align="right"> and <div align="center"> - alignment, again, belongs in CSS, not used like that.
5 - You do NOT need a table for your menu on the right side, use an Unordered List and CSS to style your menu. Your menu items, at least in my browser, are HUGE, and look pretty rough, they look out of place with the rest of the design. I would question the doubling of the menu on the left AND right too, unnecessary.
6 - Put the underlines back on your links, at least the ones that are in the body text. For accessibility reasons, you need to leave the underlines in links so people don't have to GUESS what's a link and what isn't.
7 - Tips page - get rid of the centering on the text, it makes text difficult to read - not good for readability - leave it alone as left-justified.
8 - I would also lose the ugly borders on the tables and style the table and cells with CSS - if you HAVE to use tables that is. I wouldn't.