View Single Post
  #2 (permalink)  
Old Dec 16th, 2007, 19:34
MikeHopley MikeHopley is offline
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The right look but is it semantic?

For the logo, I would simply use this:

Code: Select all
<h1><img src="logo.xxx" alt="Team bullet proof bomb"></h1>
The <h2> should not be interrupted by the | dividers (this is incredibly annoying for screen readers), and it should have the full text. Use this:

Code: Select all
<h2><span>competing</span><span>in</span><span>the</span>
<img src="MongoliaRally.xxx" alt="Mongolia Rally"></h2>
The spans are only necessary because of your line divider effect (the | glyphs). Personally I would dump the dividers, but if you want to keep them, apply them as background images to the spans.

Alternatively, make the entire <h2> into an image, and use the same method as for the <h1>. This would be easier.

Last edited by MikeHopley; Dec 16th, 2007 at 19:38.
Reply With Quote