How can I make the text below thicker while keeping the links as they are?
li
{
list-style-type:none;
font-size: 14px;
line-height:28px;
font-weight:thick
}
a:link
{
color:#3399CC;
}
...
<div id="left_column" >
<ul>
<li><a href="a.html">Im happy as I am</a> - I want to be less thick</li>
<li><a href="b.html">Im also happy as I am</a> - I also want to be less thick</li>
</ul>
</div>
It looks like you want the links to be bolded and the text to be less thick (ie not-bolded)
Look at the code below, same as yours except I defined
font-weight:normal;in the<li>andfont-weight:700;in your<a>tags. Here’s the working example.Try this in your code: