It would be nice if there was an option to replace this image easily from the UI, but for now it’s possible to do with CSS:
/* Replace Blank Slate Image on Channels, Catalog, and My Courses widget*/
doc-widget-channels ui-illustration.ui-illustration,doc-widget-course-catalog ui-illustration.ui-illustration, doc-widget-my-courses-and-learning-plans ui-illustration.ui-illustration{
background: url(https://pics.clipartpng.com/midle/Cat_PNG_Clip_Art-2690.png) no-repeat center;
background-size: contain;
}
/* Hide Blank Slate image on Channels, Catalog and My Cuorses Widgets*/
doc-widget-channels ui-blank-slate g,doc-widget-course-catalog ui-blank-slate g, doc-widget-my-courses-and-learning-plans ui-blank-slate g {
visibility: hidden;
}
You’ll want to replace the image URL in that code with your own unless you like my cat picture.
Remember that it’s also possible to use Docebo to host images through the HTML widget. Demo showing how to do this here.
Hope this helps!
For everyone following this post, I also wanted to point to the following post that covers the same topic in a bit more detail.
Thanks as always to @nick.tosto for continuing to empower this community with the tools to customize their platforms to the Nth degree!