• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Mailto mit Betreff und gleicher Farbe in Wordpress Side Content Bar

  • Ersteller Gelöschtes Mitglied 43879
  • Erstellt am
G

Gelöschtes Mitglied 43879

Guest
Beitrag gelöscht.
 
Zuletzt bearbeitet von einem Moderator:
Werbung:
Werbung:
Code:
.zyth-footer-column  #block-9 p:nth-child(2),.zyth-footer-column  #block-9 p:nth-child(3)  {
color:#f00 !important;
}
Wenn du das Template so lässt!
 
Oder probiere mal
HTML:
[gdlr_core_space height="-40px"]Telefon 0 12 34 / 12 34 56[gdlr_core_space height="10px"] <a style="color:#f00;" href="mailto:[email protected]?subject=Anfrage - Website">E-Mail [email protected]</a> [gdlr_core_space height="-5px"]

<a style="color:#f00;"
 
Vielleicht besser mit Klassen zu arbeiten:
HTML:
[gdlr_core_space height="-40px"]<a class="footer-links" href="tel:01234123456">Telefon 0 12 34 / 12 34 56</a>[gdlr_core_space height="10px"] <a class="footer-links" href="mailto:[email protected]?subject=Anfrage - Website">E-Mail [email protected]</a> [gdlr_core_space height="-5px"]

Hab oben noch die Nummer verlinkt!

CSS:
.footer-links {
color:#f00 !important;   
}
.footer-links:hover {
color:#0f0 !important;   
}
 
Werbung:
Werbung:
Werbung:
Hmm manchmal gibt es eine !important-Deklaration schon, dann muss man es verschachteln.
CSS:
body .footer-links {
color:#f00 !important;   
}
body .footer-links:hover {
color:#0f0 !important;   
}

Wird denke ich nichts bringen....
 
Lieber Oliver, danke, wir verwenden hier Deine erste Lösung, die sieht toll aus.
Nochmals herzlichen Dank, das hat wirklich weitergebracht.

Alles Gute!
 
Werbung:
Zurück
Oben