Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Hi @xripper the following HTML and CSS will fix your nav issues. I removed the tags from the ul li a as they are not necessary, I instead indented the text using css which means the a's will still be accessible to screen readers etc. </p> <pre><code>&lt;ul id="navigation"&gt; &lt;li id="nav-bio"&gt;&lt;a href="#"&gt;Bio&lt;/a&gt;&lt;/li&gt; &lt;li id="nav-photos"&gt;&lt;a href="#"&gt;Photos&lt;/a&gt;&lt;/li&gt; &lt;li id="nav-music"&gt;&lt;a href="#"&gt;Music&lt;/a&gt;&lt;/li&gt; &lt;li id="nav-videos"&gt;&lt;a href="#"&gt;Videos&lt;/a&gt;&lt;/li&gt; &lt;li id="nav-externalsites"&gt;&lt;a href="#"&gt;External Sites&lt;/a&gt;&lt;/li&gt; &lt;li id="nav-merch"&gt;&lt;a href="#"&gt;Merch&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>and the following css will fix your sprites on the nav</p> <pre><code>ul#navigation { margin: 0 auto; padding: 0; width: 900px; height: 50px; background-image: url(navigation-background.gif); } ul#navigation li { margin: 0; padding: 0; list-style-type: none; display: inline; height: 50px; text-align: center; float: left; line-height: 40px; position: relative; } ul#navigation li a { display: block; height: 50px; text-indent: -999em; } ul#navigation li a:hover { background: url(navigation-background.gif) bottom left no-repeat; } ul#navigation li#nav-bio { width: 81px; margin-left: 84px; } ul#navigation li#nav-bio a:hover { background-position: -84px bottom; } ul#navigation li#nav-photos { width: 116px; } ul#navigation li#nav-photos a:hover { background-position: -165px bottom; } ul#navigation li#nav-music { width: 102px; } ul#navigation li#nav-music a:hover { background-position: -281px bottom; } ul#navigation li#nav-videos { width: 108px; } ul#navigation li#nav-videos a:hover { background-position: -383px bottom; } ul#navigation li#nav-externalsites { width: 202px; } ul#navigation li#nav-externalsites a:hover { background-position: -491px bottom; } ul#navigation li#nav-merch { width: 120px; } ul#navigation li#nav-merch a:hover { background-position: -693px bottom; } </code></pre> <p>I would be confident that this will work cross browser but I don't have access to IE at the moment. Let me know if it works for you and if not I'll try helping out again.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload