I tried adding a border image with a script in the “Additional CSS” box in the editor. I have uploaded the image to ‘Assets’ in the theme editor but have no idea how to find the URL to it so I go with “/assets/IMAGE NAME”.
How do I do?
EDIT: I’m using this script:
.card__media::before {
content: “” !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
background: url(‘/assets/images/cardborder1.png’) no-repeat !important;
background-size: cover !important;
z-index: 1 !important;
}