Quote:
Originally Posted by djprescott
'See example texts on 119' is the underlined text.
<span class="Hyperlinks" style="font-size:1em;">See Example texts on</span> <span class="Hyperlinks" style="font-size:1em;">119</span></a></p>
and the Hyperlinks CSS it refers to is:
span.Hyperlinks {
font-family : "Sabon MT Std", serif;
font-weight : normal;
font-style : normal;
font-size : 0.92em;
text-decoration : none;
font-variant : normal;
color : #000000;}
|
You have a space in between the two identical spans which may be causing it to put the underline from the <a> tag. Remove the duplicate span like this:
<a href="..."><span class="Hyperlinks" style="font-size:1em;">See Example texts on 119</span></a></p>
Personally I don't like putting an extra span inside of another tag when you can just apply the style to the tag itself, like this:
<a href="..." class="Hyperlinks" style="font-size:1em;">See Example texts on 119</a></p>
or even more compact - just style the <a> tag itself in the css:
a {font-family : "Sabon MT Std", serif;
font-weight : normal;
font-style : normal;
font-size :
0.92em; 1em;
text-decoration : none;
font-variant : normal;
color :
#000000; inherit}
<a href="...">See Example texts on 119</a></p>