When I hover over the text, the text moves. The reason that the text is moving is that I remove the bold effect on hover. How to stop the text to move on hover?
#menu li a{
color:#595959;
font-size:14px;
font-weight:bold;
position: relative;
overflow:hidden;
padding:2px 5px;
}
#menu li a:hover{
color:#FFFFFF;
font-weight:normal;
background-color:#e11d3b;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
text-decoration:none;
}