Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 3: | Zeile 3: | ||
display: none; | display: none; | ||
} | } | ||
/* | |||
#footer- | /* das "siteSub nicht löschen */ | ||
content: | /* Fügen Sie ein benutzerdefiniertes Icon mit einem Link hinzu */ | ||
#footer-icons::after { | |||
content: url('/path/to/your/image.png'); /* Bild-URL */ | |||
display: inline-block; | display: inline-block; | ||
margin-left: 15px; /* Abstand zum vorherigen Inhalt */ | |||
vertical-align: middle; | vertical-align: middle; | ||
} | } | ||
#footer-icons::after:hover { | |||
#footer- | cursor: pointer; | ||
} | |||
#footer-icons::after { | |||
position: relative; | position: relative; | ||
} | } | ||
#footer-icons::after:active { | |||
#footer- | cursor: pointer; | ||
content: url('https://example.com'); /* Ziel-URL */ | |||
} | } |
Version vom 26. August 2024, 10:47 Uhr
/* Das folgende CSS wird für Benutzer des Citizen-Skins geladen */ #siteSub { display: none; } /* das "siteSub nicht löschen */ /* Fügen Sie ein benutzerdefiniertes Icon mit einem Link hinzu */ #footer-icons::after { content: url('/path/to/your/image.png'); /* Bild-URL */ display: inline-block; margin-left: 15px; /* Abstand zum vorherigen Inhalt */ vertical-align: middle; } #footer-icons::after:hover { cursor: pointer; } #footer-icons::after { position: relative; } #footer-icons::after:active { cursor: pointer; content: url('https://example.com'); /* Ziel-URL */ }