vote up 2 vote down star

I've created a template for WebSVN (see it in action here) and have worked hard to make it use web standards and validate. It looks great in most browsers, but as I feared, IE 6 and IE 7 can't quite hack it. In my case, the problem is that they refuse to render the unordered list for my navigation horizontally — they both display each <li> on a separate line and overflow the allotted vertical space. (IE 8 behaves correctly, and looks very close to Firefox and Safari, which was a pleasant surprise.)

I haven't been able to find a suitable solution on Google or SO. I would prefer a CSS fix, rather than JavaScript or something similar, although that's not entirely off the table. (Also, I don't care about the PNG transparency issue in IE 6 — it doesn't hurt readability at all, and IE 7 and 8 both handle it perfectly.)


Edit: Here are relevant snippets of HTML and CSS:

HTML

<ul id="links">
  <li class="diff"><a href="comp.php?repname=BYU+CocoaHeads&amp;compare[]=%2F@552&amp;compare[]=%2F@553">Compare with Previous</a></li>
  <li class="rev"><a href="revision.php?repname=BYU+CocoaHeads&amp;">Changes</a></li>
  <li class="log"><a href="log.php?repname=BYU+CocoaHeads&amp;path=%2F&amp;&amp;isdir=1">View Log</a></li>
  <li class="download"><a href="dl.php?repname=BYU+CocoaHeads&amp;path=%2F&amp;isdir=1" rel="nofollow">Download</a></li>
  <li class="svn"><a href="http://dysart.cs.byu.edu/chsvn/">SVN</a></li>
  <li class="rss"><a href="rss.php?repname=BYU+CocoaHeads&amp;path=%2F&amp;isdir=1">RSS feed</a></li>
</ul>

CSS

#links {
    padding: 0;
    margin: 0;
    text-align: center;
    background: url(images/bg-gray-light.png) repeat-x 0 top;
    border-bottom: solid 1px #a1a5a9;
}

#links li {
    font-size: 110%;
    display: inline-block;
    padding: 5px 5px 4px;
    white-space: nowrap;
}


Edit: Now that I've found a solution, the linked page won't (shouldn't?) misbehave any more in this situation, but will continue to be publicly available.

flag

It looks lovely. – DanDan Aug 24 at 16:10
Thanks! I'll be adding it to the WebSVN trunk soon. I just need to polish up some colors and table headers on a few pages, but I'm pretty happy with it overall. – Quinn Taylor Aug 24 at 16:14

4 Answers

vote up 1 vote down

Check out http://css.maxdesign.com.au/listamatic/

or post your code so people can take a look

link|flag
The link in my question is to the template, so people can view source at their leisure. – Quinn Taylor Aug 24 at 16:13
right, but it would be a lot more helpful if you pulled the part out you were having problems with so we didn't have to go through your whole source code... – Jason Aug 24 at 16:15
Fair enough. I was figuring Firebug of Safari's inspector would be the best option, but for posterity, having the HTML and CSS in the question certainly won't hurt. – Quinn Taylor Aug 24 at 16:22
vote up -2 vote down

Assigning float:left to the li elements should work, IIRC.

link|flag
1  
The menu wouldn't be centered then... – DisgruntledGoat Aug 24 at 16:28
True. I should've clicked that link... – Simon Aug 24 at 16:53
vote up 0 vote down

It works fine for me in IE8 with compatability mode.

The only potential problem I can see is you don't specify margins on the list items. Try setting margin:0 and see if that helps.

link|flag
As I mentioned, IE 8 isn't a problem, it works fine there. It's IE 6 and 7 that have issues. – Quinn Taylor Aug 24 at 16:27
IE8 with compatibility mode == IE7. Anyway, turns out I was viewing your fixed page, which has display:inline on the list item. – DisgruntledGoat Aug 24 at 16:29
Touché. I realized I had modified it and reverted it for now. Glad to hear that "IE7" renders it properly as well. Removing my downvote. – Quinn Taylor Aug 24 at 16:46
vote up 3 vote down check

It turns out that IE 6 and 7 don't implement inline-block as expected. Looks like I found a good solution, though... Using the following CSS works for those browsers, and preserves the correct formatting in newer browsers:

#links {
    padding: 0 0 4px;
    margin: 0;
    text-align: center;
    background: url(images/bg-gray-light.png) repeat-x 0 top;
    border-bottom: solid 1px #a1a5a9;
}

#links li {
    font-size: 110%;
    display: inline-block;
    padding: 5px 5px 0;
    white-space: nowrap;
}

* html #links li {
    display: inline;
}

I despise IE hacks.... I'm strongly considering including Pushup in my template.

link|flag
1  
In IE6/7, inline-block only works on elements that are inline by default (anchors, spans). – Joel Potter Aug 24 at 17:44

Your Answer

Get an OpenID
or

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