i have the following css for my site
.main {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
padding-top:15px;
color:#000000;
}
.main a {
text-decoration:underline;
color:#000000;
}
.main a:hover {
text-decoration:none;
color:#000000;
}
.main a:visited {
text-decoration:underline;
color:#000000;
}
when i have a link like <a href=\"" . $SESSION['PHP_SELF'] . "\">Read more</a> the a:hover it's working, but when i add some parameters to the link like <a href=\"" . $SESSION['PHP_SELF'] . "?p=0&mcid=$mcid&cid=$cid\">Read more</a> is not working. what's the problem with that?