Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

By way of design the header of my document looks like this. The H1 is buried in an OL. It's still the first 'heading' tag of the page but will it lose any of it's SEO value compared to it just sitting on it's own as the first tag of the body?

<body>    
 <header>
  <nav>
   <ol>
    <li><h1><a href="">Company Name</a></h1></li>
    <li><a href="">About</a></li>
share|improve this question
What benefit do you get from doing it this way? It's very non-standard. – Kenzo Jan 27 at 12:09
4  
Are you aware that your h1 will be the heading for the nav block and not for the page? – Rob Jan 27 at 14:04
@Kenzo No benefit, from a layout perspective it was easiest to code this way. Just testing ideas. – Dan Christian Jan 27 at 15:09
1  
@Rob No I didn't think of that. Good spot. Want to put that as an answer? – Dan Christian Jan 27 at 15:09

2 Answers

up vote 7 down vote accepted

That h1 will be the heading for the nav section and not the page as a whole. nav is its own sectioning element and won't affect the page's SEO.

share|improve this answer

It shouldn't effect SEO. It is sloppy coding. Use a span or a class, and some css.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.