link probleem
ottorocket - 17/07/2006 21:03
Onbekend
Hallo, ik heb een css met daarin de kleuren van links enzo, maar nu wil ik ook bepaalde links andere kleuren kunnen geven.
Dus ik heb een menu waar in de achtergrond van de link ook verandert, maar ik wil op een pagina een gewone link zetten, maar dan komt die achtergrond erbij, is het mogenlijk om met bv class extra links aan te maken??
11 antwoorden
Gesponsorde links
Maarten - 17/07/2006 21:09
Erelid
a.andereLink {
color: #FF0000;
}
<a class="andereLink" href="...">Wii, een rode link!</a>
a. andereLink {
color: #FF0000;
}
< a
class = "andereLink" href
= "..." > Wii
, een rode
link !</ a
>
ottorocket - 17/07/2006 21:15
Onbekend
sorry, maar het werkt niet, er blijft nog altijd een kader rond staan die link staan, zelf al doe ik het zoals jou
Tuinstoel - 17/07/2006 21:17
PHP expert
background-color: veranderen? -_-"
Maarten - 17/07/2006 21:22
Erelid
Natuurlijk moet je wel de bewuste attributen gebruiken, zoals background-color als je het over een achtergrondkleur hebt, en border als je het over een rand hebt.
Mijn voorbeeld was met betrekking tot de tekstkleur.
ottorocket - 17/07/2006 21:42
Onbekend
ik heb dit gedaan, maar dit lukt niet, het blijft gewoon hetzelfde als mijn adnere links
<a class="andereLink" href="#">Test</a>
a.andereLink {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman", Times, serif;
color: #000000;
height: 30px;
text-decoration: none;
}
a. andereLink {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman" , Times, serif;
color: #000000;
height: 30px;
text- decoration: none;
}
ZG1988 - 17/07/2006 22:11
überleet
heb je ergens een css script zonder bijgevoegde naam ?
vb.
a:link, a:visited {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman", Times, serif;
color: #000000;
height: 30px;
text-decoration: none;
}
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman" , Times, serif;
color: #000000;
height: 30px;
text- decoration: none;
}
ottorocket - 17/07/2006 22:27
Onbekend
ja, zo zijn mijn andere links
knoopa - 17/07/2006 23:51
Onbekend
<a class="link1" href="bla">rood</a>
<a class="link2" href="bla">geel</a>
< a class = "link1" href= "bla" > rood</ a>
< a class = "link2" href= "bla" > geel</ a>
a.link1 {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman", Times, serif;
color: red;
height: 30px;
text-decoration: none;
}
a. link1 {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman" , Times, serif;
color: red;
height: 30px;
text- decoration: none;
}
a.link2 {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman", Times, serif;
color: blue;
height: 30px;
text-decoration: none;
}
a. link2 {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman" , Times, serif;
color: blue;
height: 30px;
text- decoration: none;
}
Maarten - 17/07/2006 23:56
Erelid
Jah, je kan die andere niet overschrijven, je zult zoals skatelife aanduidt aparte classes moeten gebruiken dan.
ottorocket - 18/07/2006 00:04
Onbekend
en hoe doe ik dat dan met die visted, active, hover
ZG1988 - 18/07/2006 12:02 (laatste wijziging 18/07/2006 12:02)
überleet
<a class="link1" href="bla">rood</a>
< a class = "link1" href= "bla" > rood</ a>
a.link1:link, a.link1:visited {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman", Times, serif;
color: red;
height: 30px;
text-decoration: none;
}
a
. link1
: link , a
. link1
: visited
{ background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman" , Times, serif;
color: red;
height: 30px;
text- decoration: none;
}
a.link1:hover {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman", Times, serif;
color: red;
height: 30px;
text-decoration: underline;
}[/
a. link1: hover {
background: #FFFFFF;
display: block;
font: 20px Georgia, "Times New Roman" , Times, serif;
color: red;
height: 30px;
text- decoration: underline;
} [ /
zoiets
Gesponsorde links
Dit onderwerp is gesloten .