- Impact
- 0
My problems is this: I want the links of my page that have been visited to have the same effect of those not visited. To be more specific:
a:hover{
text-decoration: underline;
color: navy}
a:visited{
font: 13px arial;
text-decoration: none;
color: #666666}
The links that were visitid by me appeared with underline so I had to put text-decoration: none to the visited type but in the same time I want the links to appear underlined when hovered. And the problem is that the links visited don't become underlined when hovered. Only the unvisited ones. Anyone following me? I really can't see any way out so pls give me a hint. Basically I want all the links to become underlined when hovered.
And 2 simple questions...I remember reading somewhere that is recommended that u put a whole link as a ref instead of a direct one.Meaning to put
<a href="www.mysite.com/page.html"
instead of
<a href="page.html"
Is that true...does that actually help?
And I've noticed that some sites have an additional "title" attribute along the alt atribute for pictures.
<img border="0" alt='word' title='same word' src=... ..is that necessary?
and that also some off people add class="" to the picture...although there is nothing between the comas(""). what is the point of doing that? Thanx a lot for helping me out! Cheers
a:hover{
text-decoration: underline;
color: navy}
a:visited{
font: 13px arial;
text-decoration: none;
color: #666666}
The links that were visitid by me appeared with underline so I had to put text-decoration: none to the visited type but in the same time I want the links to appear underlined when hovered. And the problem is that the links visited don't become underlined when hovered. Only the unvisited ones. Anyone following me? I really can't see any way out so pls give me a hint. Basically I want all the links to become underlined when hovered.
And 2 simple questions...I remember reading somewhere that is recommended that u put a whole link as a ref instead of a direct one.Meaning to put
<a href="www.mysite.com/page.html"
instead of
<a href="page.html"
Is that true...does that actually help?
And I've noticed that some sites have an additional "title" attribute along the alt atribute for pictures.
<img border="0" alt='word' title='same word' src=... ..is that necessary?
and that also some off people add class="" to the picture...although there is nothing between the comas(""). what is the point of doing that? Thanx a lot for helping me out! Cheers







