I Google searched the code for border radius & glowing buttons. When I got the code I replaced input with a. Here is the code:
a {
border:2px solid #dadada;
border-radius:7px;
font-size:20px;
padding:5px;
}
a:focus {
outline:none;
border-color:#9ecaed;
box-shadow:0 0 10px #9ecaed;
}
How do I make a link round and make it glow when hover?
Have you tried the pseudo class
:hoverinstead of:focus?