Closed
Bug 788457
Opened 13 years ago
Closed 13 years ago
We have two <h1>: remove the more generic one
Categories
(developer.mozilla.org Graveyard :: Editing, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: teoli, Unassigned)
References
Details
Our wiki pages have two <h1>.
One, common to all, with the MDN logo and the "Mozilla Developer Network" text.
A second, specific, with the article name.
We should remove the first <h1>, it dilutes the H1 SEO power between the article name and the three words Mozilla Developer Network, which are useless SEO-wise.
Basically, it means changing this:
<div id="branding">
<h1 id="logo"><a href="/en-US/"><img src="//developer.mozilla.org/media/img/mdn-logo-sm.png" alt="" title="" width="62" height="71"> Mozilla Developer Network</a></h1>
</div>
to something like this (not tested, not optimized):
<div id="branding logo">
<a rel="home" href="/en-US/"><img src="//developer.mozilla.org/media/img/mdn-logo-sm.png" alt="" title="" width="62" height="71"> Mozilla Developer Network</a>
</div>
Note the rel="home" in the <a> to indicate that it is a link to the home page.
Comment 1•13 years ago
|
||
Commits pushed to master at https://github.com/mozilla/kuma
https://github.com/mozilla/kuma/commit/6c1b83123534f64402942658b0984201cecab290
fix bug 788457 - Make logo generic, not an H1
https://github.com/mozilla/kuma/commit/cc0affe006f18ae841e9df19c29386585570a707
Merge pull request #572 from darkwing/h1-logo-788457
fix bug 788457 - Make logo generic, not an H1
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Comment 2•13 years ago
|
||
verified fixed https://developer.allizom.org/en-US/docs/HTML
Status: RESOLVED → VERIFIED
| Assignee | ||
Updated•13 years ago
|
Version: Kuma → unspecified
| Assignee | ||
Updated•13 years ago
|
Component: Docs Platform → Editing
Updated•6 years ago
|
Product: developer.mozilla.org → developer.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•