pragmaMx Support Forum

pragmaMx => Themes & Design => Thema gestartet von: moeller am 29 September 2013, 18:27:48

Titel: [gelöst] pmx-blank, Links nicht unterstreichen
Beitrag von: moeller am 29 September 2013, 18:27:48
Hallo!
Ich habe die CSS-Dateien rauf und runter abgesucht, kanns aber nicht finden.
Ich will beim Theme pmx-blank die Links nicht unterstrichen haben.
Weiss jemand, wo ich das abstellen kann?
Titel: Re:pmx-blank, Links nicht unterstreichen
Beitrag von: cihan am 29 September 2013, 19:00:06
Hallo :)

in default.css, Zeile 24:

a {
background-color: transparent;
color: #75695E;
text-decoration: underline;
}

mach daraus:

a {
background-color: transparent;
color: #75695E;
text-decoration: none;
}

lg
Titel: Re:pmx-blank, Links nicht unterstreichen
Beitrag von: moeller am 29 September 2013, 19:21:42
Ja, aber das habe ich ja.
Bei mir sieht das so aus:

a{background-color:transparent;color:#75695E;text-decoration:none;}


Die Links sind trotzdem unterstrichen.
Die Caches sind geleert.
Titel: Re:pmx-blank, Links nicht unterstreichen
Beitrag von: cihan am 29 September 2013, 23:18:53
Hi,
ich habe das Theme nicht, sehe es nur auf der pmx-Demo-Seite.

Schreibe mal folgendes in dein style.css:

a {
background-color: transparent;
color: #75695E;
text-decoration: none !important;
}

lg
Titel: Re:pmx-blank, Links nicht unterstreichen
Beitrag von: moeller am 29 September 2013, 23:25:21
Super  :thumbup:

Danke, das wars.