Home › Forums › CSS › [Solved] Can someone help me with this problem in css? › Reply To: [Solved] Can someone help me with this problem in css?
well i have fixed it but now its not centered,
`
nav ul li{
float:left;
padding:0px 30px 0px 80px;
list-style-type:none;
}
nav ul li a{
font-size:20pt;
font-weight: bold;
color: rgb(0, 0, 0);
text-decoration: none;
text-shadow: 0 1px 1px rgba(0,0,0,0.70);
-webkit-border-radius:6px;
-moz-border-radius:6px;
border-radius:6px;
-webkit-transition:all 1.0s ease-in-out;
-moz-transition:all 1.0s ease-in-out;
-o-transition:all 1.0s ease-in-out;
transition:all 1.0s ease-in-out;
}
nav ul li a:hover,
nav ul li a:focus
{
color: #FFFFFF;
background-color: rgb(0,0,0);
}
`