Hello!
See:
The links: LinkedIn + XING should not be underlined.
How can I change the typography of links in text?
I would like to set them in medium font weight without underline.
Best regards
josephine
you can manage that via the attribute selector
f.e.:
#top a[href*="linkedin"] {
color: red;
font-style: italic;
font-weight: bold;
text-decoration: none;
}
PS : lass dir mal von einem Mod helfen – mittles z.B. better search and replace – deine Datenbank nur noch https zu laden.
Du hast ne menge gemischte Inhalte , was dazu führt, dass du oben nicht mehr als sichere Webseite eingestuft wirst.
hauptsächlich betrifft das deine Schriftarten, die du selbst hostest.
ah, hab es auch für XING hinbekommen, ich hatte es in Versalien geschrieben. In Kleinbuchstaben geht’s. :)
Hi,
Try this css to change them on hover:
#top a[href*="linkedin"]:hover {
color: #e84f24;
}
#top a[href*="xing"]:hover {
color: #e84f24;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
great! that worked, thanks a lot! :)