xxll_martin_llxx
Member
- Messages
- 740
- Reaction score
- 1
- Points
- 18
Building a new website - http://www.horseracingtipcomparison.com
On this page - http://www.horseracingtipcomparison.com/uk-horse-racing-tracks-number-2/
Obviously at the top if you click any of the names, it takes you down the page to that anchor for that track.
I want the track names at the bottom to just be text in black. What's wrong with my CSS coding??
On this page - http://www.horseracingtipcomparison.com/uk-horse-racing-tracks-number-2/
Obviously at the top if you click any of the names, it takes you down the page to that anchor for that track.
I want the track names at the bottom to just be text in black. What's wrong with my CSS coding??
Code:
<a href="#AINTREE">Aintree</a>
<a href="#ASCOT">Ascot</a>
<a href="#AYR">Ayr</a>
Code:
<a id="AINTREE">Aintree</a>
<a id="ASCOT">Ascot</a>
<a id="AYR">Ayr</a>
Code:
a, a:link, a:active { text-decoration:underline; color:#06C; }
a:hover { color:#06C; }
a:visited { color:#06C;/*#6300CC*/; }
.ainv a, .ainv a:link, .ainv a:visited, .ainv a:active { text-decoration:none; }
.ainv a:hover { text-decoration:underline; }
a.ainv:link, a.ainv:visited, a.ainv:active { text-decoration:none; }
a.ainv:hover { text-decoration:underline; }
a.id {
color:#000;
text-decoration:none; }
Last edited: