https:
//www.
zella.
de/forum/forum/index.
php?
thread/295-widget-cookie-consent-layout-symbol-%C3%A4ndern/&
postID=1770#post1770">
Die Grafik wird als Inline-SVG ausgegeben. Aus die schnelle fällt mir da leider auch nichts ein.
Eine Option habe ich gefunden, ob es einen einfacheren / kürzeren Weg gibt, kann ich gerade nicht sagen.
/* Original SVG ausblenden */
#consenttoggle svg {
display: none;
}
.
toggleconsent {
position: relative;
}
/* Neues Icon durch :
:
after Pseudo-Element einfügen */
.
toggleconsent:
:
after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url(link/zum/icon.
svg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}