Hi,
Inside my css file for a html page I have this text that I need help
}
/* Sidebar Left
-----------------------------------------------------------------------------*/
#sideLeft {
float: left;
width: 112px;
margin-left: -100%;
position: relative;
background: #4DA1D4;
font-size: 14px;
padding: 0px 5px 0px 5px;
font: 18px Calibri, Arial, Tahoma, Verdana, sans-serif;
How do I control links here like
a:link {color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */
for this
Code:
<div class="sidebar" id="sideLeft">
<a href="/bardejov/jewishhistory.html" target="_self">Jewish History of Bardejov</a><br><br>
</div><!-- .sidebar#sideLeft -->
}
Thank you,
David