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 want the whole div to change from #555555 to #b13c19. It's a simple rounded corner div wrapped around a link. I cant seem to get it right. Here is what I have so far. Any help would be much appreciated.

HTML:

<div id="resume_btn">

     <a href="Aalok_Resume.pdf"> Click Here to View My Resume </a>

</div>

CSS:

#resume_btn {
position: relative;
margin-top: 25px;
padding: 20px;
width: 220px;
height: 25px;
background-color: #555555;
background-repeat: no-repeat;
text-align:center;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-0-border-radius: 10px;
border-radius: 10px;  
}

#resume_btn a {
text-decoration: none;
color:white;
font-family: 'oswald', helvetica, arial, sans-serif;
font-size: 18px;
font-weight: 300;
}

I'm not sure where to put the "-moz-transition: background 1s ease-in;" etc...properties. I want the background to change color when i hover over the ilnk. I made it work for the background color of the link but it doesnt look good because the background only encompasses the wording and not the whole 230 x 25 area.

share|improve this question

1 Answer

up vote 1 down vote accepted

Try - http://jsfiddle.net/LTsag/1/

#resume_btn {
    position: relative;
    margin-top: 25px;
    padding: 20px;
    width: 220px;
    height: 25px;
    background-color: #555555;
    background-repeat: no-repeat;
    text-align:center;

    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
        -ms-border-radius: 10px;
         -o-border-radius: 10px;
            border-radius: 10px; 

    -webkit-transition: background 1s;
       -moz-transition: background 1s;
        -ms-transition: background 1s;
         -o-transition: background 1s;
            transition: background 1s;
}

#resume_btn:hover {
    background:  #b13c19;
}

#resume_btn a {
    text-decoration: none;
    color:white;
    font: 300 18px 'oswald', helvetica, arial, sans-serif;
}​

share|improve this answer
Yea I tried that. Didn't work. Thank You though! – user1421300 May 29 '12 at 0:00
what do you mean "didn't work?" it works perfectly, just take a look at the JSFiddle – Zoltan Toth May 29 '12 at 0:02
Thank you! It worked. I tried that also...don't know why it didn't work last time. I know it wont work for IE but i could care less. My target audience isn't dumb enough to still be using IE anyway. I know that's bad coding ethics but this is my personal site. – user1421300 May 29 '12 at 0:08

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.