[ ozbiljnik @ 22.05.2007. 12:22 ] @
Problem kod css: link ima tri stanja, link, hover, visited, kada ga jednom kliknem on dobije visited i vise nema hover. Dali je problem sa nekim refreshom ili sta ...?
[ Shadowsong @ 22.05.2007. 12:36 ] @
Imas jos jedno stanje.

a:hover
a:link
a:visited
a:active

Takodje obrati paznju na parrent tag.
[ ozbiljnik @ 22.05.2007. 12:39 ] @
nije u tome problem, probao sam ... :(
[ Shadowsong @ 22.05.2007. 13:04 ] @
Pejstuj ovde css kod i deo HTML koda na koji se css odnosi.
[ ozbiljnik @ 22.05.2007. 13:14 ] @
^^^

<div class="topMeny">
<a href="home.htm">about</a>&nbsp;
<a href="clients.htm">clients</a>&nbsp;
<a href="illustrations.htm">illustrations</a>&nbsp;
<a href="contact.htm">contact</a>
</div>

css -----------------------------------------------------------------


.topMeny {
top: 75px;
position: relative;
}
a:link {
font-family: Verdana;
font-size: 10px;
font-weight: bold;
color: #AEAEAE;
text-decoration: none;
margin: auto;
}
a:hover {
font-family: Verdana;
font-size: 10px;
font-weight: bold;
color: #666666;
text-decoration: none;
margin: auto;
}
a:visited {
font-family: Verdana;
font-size: 10px;
font-weight: bold;
color: #AEAEAE;
text-decoration: none;
margin: auto;
}
a:active {
font-family: Verdana;
font-size: 10px;
font-weight: bold;
color: #AEAEAE;
text-decoration: none;
margin: auto;
}
[ Shadowsong @ 22.05.2007. 13:23 ] @
Sad kad ti prodam foru, da castis pivo. :)

.topMeny a:hover, .topMeny a:active
{
ont-family: Verdana;
font-size: 10px;
font-weight: bold;
color: #666666;
text-decoration: none;
margin: auto;
}

.topMeny a:link, .topMeny a:visited
{
font-family: Verdana;
font-size: 10px;
font-weight: bold;
color: #AEAEAE;
text-decoration: none;
margin: auto;
}

Ako hoces da ti se svi razlikuju onda napravis za svaki posebno, 4 grupe.
[ ozbiljnik @ 22.05.2007. 13:47 ] @
Ne vredi brate, nesto je drugo u pitanju. Zatvorite ovu temu skontacu sam. Hvala btw
[ Br@nkoR @ 22.05.2007. 13:58 ] @
Obratite pažnju na raspored događaja, potrebno je da bude
Code:

a:link
a:visited
a:hover
a:active


Da bi lakše pamtili samo koristite izraz "LoVe HAte"
[ ozbiljnik @ 22.05.2007. 14:15 ] @
aj ovako, pogledajte link pa neka mi neko kaze sta je .... http://banemilinov.com/probaES/home.htm
samo sam about i clients podigao css je na styles.css
[ Br@nkoR @ 22.05.2007. 14:22 ] @
umesto:
Code:

a:link {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #AEAEAE;
    text-decoration: none;
    margin: auto;
}
a:hover {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #666666;
    text-decoration: none;
    margin: auto;
}
a:visited {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #AEAEAE;
    text-decoration: none;
    margin: auto;
}
a:active {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #AEAEAE;
    text-decoration: none;
    margin: auto;
}


stavi:
Code:


a:link {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #AEAEAE;
    text-decoration: none;
    margin: auto;
}
a:visited {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #AEAEAE;
    text-decoration: none;
    margin: auto;
}
a:hover {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #666666;
    text-decoration: none;
    margin: auto;
}
a:active {
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    color: #AEAEAE;
    text-decoration: none;
    margin: auto;
}


više o tome na:
http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes
[ ozbiljnik @ 22.05.2007. 14:35 ] @
ladno je raspored ..... fala fala, beer
[ Shadowsong @ 23.05.2007. 07:54 ] @
Steta sto nema Thanks sistem. +1 za Branka.