Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to change the color of links inside <li> elements by setting specific classes on the <li> tag. I set my html up like this:

<div id="sidebar_tall">
<ul>
<li class="active_item"><a href="#">1. Property Description</a></li>
<li><a href="#">2. Landlord Details</a></li>
</ul>           
</div>  

Here is my css:

#sidebar_tall li {
list-style: none;
font-size: 14px;
}

#sidebar_tall a {
text-decoration: none;
color: #fff;
text-shadow: 0px 1px #000;
}

.active_item li {
border-top: none;
border-bottom: none;
width: 250px;
}

.active_item a{
color: #1e1f1f;
text-shadow: 0px 1px #fff;
}

I can't seem to get the active_item link to change colors. I would simply put the class on the <a> tag but I need to keep it on the <li> tag for the purposes of this site. Can anyone see why this isn't working?

share|improve this question

2 Answers

up vote 1 down vote accepted

It might be that you are not specific enough in your selector. Try this:

#sidebar_tall .active_item a {
color: #1e1f1f;
text-shadow: 0px 1px #fff;
}
share|improve this answer

The selector you've written works when .active_item is a subelement of li.

Fixed markup:

#sidebar_tall li {
list-style: none;
font-size: 14px;
}

#sidebar_tall a {
text-decoration: none;
color: #fff;
text-shadow: 0px 1px #000;
}

li.active_item {
border-top: none;
border-bottom: none;
width: 250px;
}

.active_item a {
color: #1e1f1f;
text-shadow: 0px 1px #fff;
}
share|improve this answer
That still wont change the color of the active_item link - I need all the other links to be #fff and the active_item link to be #1e1f1f; – Thomas Jun 23 '10 at 17:25

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.