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 have created a html/css template to be used within a CMS.

I have a specific class:

My Template:

<li><a class="signup" href="#">SIGN UP</a></li>

CMS Generated HTML:

<li class="signup last"> 

        <a href="http://hostone.co.nz">SIGN UP</a> 
    </li>

How could I change my CSS so it will work with the li and not the a tag?

CSS:

#mainMenu .signup{
    background-color:#69c21c;
    height:50px;
    margin-left:360px;
   -webkit-border-top-right-radius:2px;
    -webkit-border-bottom-right-radius:2px;
    -moz-border-radius-topright:2px;
    -moz-border-radius-bottomright:2px;
}

#mainMenu .signup:hover{
    background-color:#00afd8;
}
share|improve this question
If it's acting on the CMS generated markup, then it should already be applied to the li. – jnewman Jul 9 '11 at 21:10
possible duplicate of Is there a CSS parent selector? – Ross Jul 9 '11 at 21:11

1 Answer

up vote 2 down vote accepted

Assuming you're still trying to apply the rules to the a, use these:

#mainMenu .signup a {
    background-color:#69c21c;
    height:50px;
    margin-left:360px;
   -webkit-border-top-right-radius:2px;
    -webkit-border-bottom-right-radius:2px;
    -moz-border-radius-topright:2px;
    -moz-border-radius-bottomright:2px;
}

#mainMenu .signup a:hover {
    background-color:#00afd8;
}

If you're literally trying to apply them to the li, you don't need to do anything; the li is already being generated with the class.

share|improve this answer

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.