Is there a way to keep the file path from being added to a data URI in css files?
Here's an example of what I need to happen:
.headliner {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAANUlEQVQokWNksFvwnwENsDD8+4MuxsDC8O8vFsH/2ASxaseukmjB/xQ6ifruZCTe76NBhwIAR307xqwlkPoAAAAASUVORK5CYII=);
}
And this is what mojoPortal does naturally:
.headliner {
background: url(/Data/Sites/1/skins/[skin-name]/data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAANUlEQVQokWNksFvwnwENsDD8+4MuxsDC8O8vFsH/2ASxaseukmjB/xQ6ifruZCTe76NBhwIAR307xqwlkPoAAAAASUVORK5CYII=);
}
The bolded area is what I need keep the css handler from adding to the URI. Is there a way to do this?
Thanks,
-Elijah