@G-I-Jones said in Spiceworks Custom CSS HelpDesk Theme:
Anyone here using Spiceworks played with the CSSpice plugin?
Has anyone figured out a way to change icons?
It might be a little tedious for all of the icons, but if you want to change a main logo or something you can just base64 encode an image and use that as your CSS.
I took a picture of the Rancher logo and did that to show you:
base64.png
Just do:
some-item { background: url(" data:image/png;base64,<base64 encoded string>"); }Don't use image/png if it's not a png, use the correct format.