Hi,
The easiest way to do this, if you are intending to use images like your example, in all of your courses is to create a directory in your website to hold all the photo images that you will be using.
This way you can add them as a background image in the Custom CSS section of the Adaptable settings page using something like this:
.course-2 #section-0 {
background-image: url(path-to-image);
background-size: contain;
}
Where
- .course-2 is the Body class for each individual course. You can find this in the body tag of the page source code of your browser when in a course page.
- #section-0 is a unique id for the very top section of that course layout.
- path-to-image is the URL of your sites image directory.
Hope this helps?
Mary