Hi,
this could be asked many times but didn't find... sorry about that.
I inherited quark theme and in my custom theme want to set background image for a page.
In my theme i have images folder with my xy.jpg image, in my css/custom.css i tried to set:
background-image: url('images/xy.jpg');
background-image: url('/images/xy.jpg');
background-image: url('theme://images/xy.jpg');
background-image: url('{{theme://images/xy.jpg}}');
non of these works. The only one that works is
background-image: url('../images/xy.jpg');
but i prefer something without relative path
is this available?
Many thanks