pragmaMx Support Forum

pragmaMx => Individuelle Anpassungen => Thema gestartet von: baraber in 29 Februar 2008, 17:00:11

Titel: currentpath farbig ( pathview) ?
Beitrag von: baraber in 29 Februar 2008, 17:00:11
Hallo,

ich möchte den Links des Currentpath ( Pathview = wo man sich befindet auf der Seite ) eine eigene Farbe zuweisen. Diese Links haben die selbe Farbe wie die der Homepage. Wo kann ich das ändern und wie ?

Gruß und danke im Vorraus

Tony
Titel: Re: currentpath farbig ( pathview) ?
Beitrag von: m-t in 29 Februar 2008, 17:47:57
in der css datei von deinem theme:

Zitat
#pathview a {
        border-bottom: none;
        background-color: transparent;
        color: #FFFFFF;
}

#pathview a:hover,
#pathview a:focus {
        background-color: transparent;
        color: #F2F2F2;
}

#pathview a:active, #pathview a:link, #pathview a:visited {
        background-color: transparent;
        color: #FFFFFF;
}