#boxMemberProfile H2 -- Who's member profile? There is no reason for this to be separate from the H3 that follows. Everything here is a subsection of THAT member's profile, so make THAT the h2.
Something like:
<h2>DoubleDee's Member Profile</h2>
div#boxUser -- not sure if this is necessary; I smell a subsection and as a presentational hook it might not be a bad idea, but it's making my bad-code sense twitch a little.
h3.subHeading -- as before, if it's a subheading why is it the same level as it's sibling? Pointless class.
div.friendWrapper -- as before, this should probably be a list meaning it only needs one class, not three of them.
img.noborder -- presentational class, defeats the point of separation of presentation from content. At that point you might as well just use the deprecated border attribute.
In general that whole section has the problem of "if they're all recieving the same classes, NONE of them need classes" -- that's part of what semantic markup is for.
I'm guessing since we're waiting for your pic to be approved, but I suspect for that whole section I'd have something more like this:
Code:
<h1>
<a href="/index.php">
DoubleDee, Inc <span>-</span>
<small>Tips on starting a Small-Business</small>
</a>
</h1>
<div id="memberProfile">
<h2>DoubleDee's Member Profile</h2>
<img
src="/uploads/f21190299a795e9cf3439f7f62c223f79e023ab7.jpg"
width="100"
alt="DoubleDee's Avatar"
/>
<ul class="controls">
<li><a href="">Send Private Message</a></li>
<li><a href="">Find Latest Posts</a></li>
</ul>
<h3>Friends</h3>
<ul class="friends">
<li>
<a href="">
<img
src="/uploads/ba5c9300f13b62acd3af9d7e57e571333a94a94d.jpg"
width="60"
alt="CowboyBob's Avatar"
/>
CowboyBob
</a>
</li><li>
<a href="">
<img
src="/uploads/a73dc554b0f812fec6553652750f48c20f6cee1b.gif"
width="60"
alt="SamIAm's Avatar"
/>
SamIAm
</a>
</li><li>
<a href="">
<img
src="/uploads/0e71dd56ccde8960313ed920eb060c4465f4a757.jpg"
width="60"
alt="Pam-Was-Here's Avatar"
/>
Pam-Was-Here
</a>
</li>
</ul>
<h3>Recent Visitors</h3>
<p>The last 10 visitors on this page were...</p>
<!-- #memberProfile --></div>
Bookmarks