H
hooksie2
Is anyone able to tell me what is wrong with the following html. When
I hover over the link the text goes bold on both. Also they both show
up with an underline despite text-decoration: none; Maybe there is
just a better syntax for this - if so please let me know as I'm just
learning html.
Thanks alot,
Andrew
<p class="downloadHeading"><a href="www.xyz.com">SCREENSHOT</a>
| <a href="www.xyz.com">DOWNLOAD</a></p>
My .css file has:
..downloadHeading {
font-size: 9px;
font-family: Arial Narrow;
text-decoration: none;
color: #17375E;
margin-bottom: 0px;
margin-top:5px;
}
..downloadHeading:hover {
font-weight:bold;
}
I hover over the link the text goes bold on both. Also they both show
up with an underline despite text-decoration: none; Maybe there is
just a better syntax for this - if so please let me know as I'm just
learning html.
Thanks alot,
Andrew
<p class="downloadHeading"><a href="www.xyz.com">SCREENSHOT</a>
| <a href="www.xyz.com">DOWNLOAD</a></p>
My .css file has:
..downloadHeading {
font-size: 9px;
font-family: Arial Narrow;
text-decoration: none;
color: #17375E;
margin-bottom: 0px;
margin-top:5px;
}
..downloadHeading:hover {
font-weight:bold;
}