Hi,
i added following parameter to my headline-component:
{
“cssImage” : {
“label” : “Headline Image”,
“type” : “text”,
“initial” : “https://xxx.svg”
}
}
Now i added following to the custom element css:
$el::before {
content:’’;
background: url({{dc:p:cssImage}});
top:-25px;
height: 50px; /height of image/
width: 50px; /width of image/
position: absolute;
background-repeat: no-repeat;
}
But its not working. Is it even possible
Best
Tobi