Dear Experts
I have following web
When I press any menu link then the first letter of mene name become lowercase i.e when I press Home then it become home.
Please help me to sortout problem.
For menu, I have following codes in css file
#button {
float:left;
margin-top:1px;
width: 145px;
border-right: 1px solid #508fc4;
padding: 5px;
margin-bottom: 5px;
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Lucida, Geneva,
Helvetica, Arial, sans-serif;
background-color: #90bade;
color: #333;
}
#button img{border:none; background: none;}
#button img {
background: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader
(src="/path/to/logo.png", sizingMethod="scale");
}
#button ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}
#button ul li {
border-bottom: 1px solid #90bade;
margin: 0; width: 130px;
text-decoration: none;
}
#button ul li a:link {
display: block;
padding: 5px 5px 5px 1px;
border-left: 10px solid #1958b7;
border-right: 1px solid #508fc4;
background-color: #2175bc;
color: #fff;
text-decoration: none;
width: 130px;
text-indent: 2px;
}
#button ul li a:visited {
display: block;
padding: 5px 5px 5px 1px;
border-left: 10px solid #1958b7;
border-right: 1px solid #508fc4;
background-color: #2175bc;
color: #fff;
text-decoration: none;
width: 130px;
text-indent: 2px;
}
#button ul li a:hover {
background-color: #CCFF99;
color:red ;
width: 130px;
font-weight:bold;
}
Thanks