I'm building a navigation. The structure is some unordered lists floated left. The 1st line item though contains an image element and I cannot seem to align it within the UL vertically. This is tricky to explain so I have created a js fiddle here: http://jsfiddle.net/JmjzU/

Any pointers on how to place the img in the middle of the containing UL, both vertically and horizontally without resorting to playing around with padding would be greatly appreciated.

link|improve this question

53% accept rate
feedback

2 Answers

Have you though about setting it as a background-image with css?

link|improve this answer
Thanks, that's helpful but I already have a background image on that element - a 1px wide column separator. It seems to accept only one of the other. Also, I'd like the logo to be click-able with an <a> element anchored to the homepage. – Doug Firr Jan 28 at 20:07
feedback

I found an unclosed style in your fiddle: http://jsfiddle.net/JmjzU/1/

It was here and it changes the display quite a bit:

header img {
    display: block;
}

I changed the fiddle a bit for visual reference: http://jsfiddle.net/JmjzU/3/

Can you describe where you want your image to be in relation to the menu, nav area and everything else?

How is this? http://jsfiddle.net/JmjzU/4/

link|improve this answer
thanks for the comment - looks like that was a leftover from me fiddling in firebug after copy/pasting. I'd highlighted the background in red so I as I could see the element. Anyway, I'm trying to find a way to position the img vertically center so that it is inline with the "design" line item. How would I do that? – Doug Firr Jan 28 at 23:35
@Doug Firr By inline with the design LI what do you mean? Same bottom, top, middle? – Matthew Jan 28 at 23:47
middle, so that it is in between the blue lines at the top and bottom – Doug Firr Jan 29 at 0:28
feedback

Your Answer

 
or
required, but never shown

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