To host and reuse images within the Thought Industries LMS:
-
Create a Custom Page
-
Title the page clearly (e.g.,
Image Host - DO NOT DELETE
) to avoid accidental removal.
-
-
Add a Single Column Widget
-
On the page, add a Single Column Widget.
-
Insert your desired image into this widget using the native image upload tool.
-
-
Get the Image URL
-
After uploading, right-click the image and select “Copy image address”.
-
This gives you the direct URL to the image, hosted on Thought Industries’ CDN.
-
-
Use the Image Anywhere
-
You can now embed or reference this URL wherever needed in the LMS.
-
Example: On the Admin Dashboard, you can inject the image into an empty
div
using CSS.
-
.looker-embed::before {
content: '';
display: block;
background-image: url("https://d36ai2hkxl16us.cloudfront.net/course-uploads/c50f33e0-665b-4906-a26e-7d18bc3b9c5e/j7d8icugc9gg-Interplay.plus.ITI.Logo.BIG.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
height: 100px;
margin-bottom: 16px;
}
NOTE: The Reports had to be removed with CSS FIRST
The end result that you can click on and go to our new company homepage. I may change to take you to a support ticket. I dunno. There seem to be some rules that it didn’t like when I added dimensions. Only two pages where it appears.


So the URL of the image, because there is no insert image here, is from this page. And the URL can be extracted from edit mode HTML view.
