Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On the follow page:

http://steve.brettatkin.com/Templates/3-column.php

The secondary navigation is overlapping and loosing the indent when the text wraps.

Here is the CSS file:

http://steve.brettatkin.com/inc/css/3-col.css

How do I fix both issues?

Thanks!

Brett

share|improve this question

1 Answer

up vote 1 down vote accepted

You may want to use a padding or margin instead of text-indent, if you want the indent to affect all lines (not just the first). The overlap is caused by your #navigation a { height: 25px; }.

share|improve this answer
Thanks, that fixed both issues. Is there a way to make this work without using a class? For example, line 112 of the CSS file. Why can't I do something like: #navigation ul > li > ul > li:hover? Also, the references seem out of order as well. – Brett Jul 18 '11 at 1:35
I see just a } on line 112. What's wrong with #navigation ul > li > ul > li:hover? Does it not work when you try it? – jtbandes Jul 18 '11 at 1:37
I'm referring to this: #navigation li:hover .sub-nav I tried this: #navigation ul > li > ul > li:hover and the hover stops working – Brett Jul 18 '11 at 1:58
Then maybe you meant #navigation ul > li:hover > ul > li? – jtbandes Jul 18 '11 at 1:59
That worked, makes sense too! Thanks. – Brett Jul 18 '11 at 2:27

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.