Hi there,
I wouldlike to add a background image to my agent side. It's currently grey. Which file do I need to overwrite so that I can have a custom image?
Thanks in adavnce
scp.css
what do i put so that the color changes into image?
background:#eee;
https://www.w3schools.com/cssref/pr_background-image.asp
I did the change yet nothing on the website changed
scp.css file
body, html { background-image: url("http://support.alcero.com/assets/default/images/page_bg.png"); background:#eee; color:#000; font-size:14px; margin:0; padding:0; }
I even tried this
still didnt work
background-image: url("/assets/default/images/page_bg.png");
You cannot use a background image and then a background color. The image wants to be displayed, but then overlaid with color #eee. Just delete the line: background:#eee;;.
#eee
thank you