Hi @windofchange87,
If you need static image on all static page kindly use below code in custom css field,
.page-mycarousel .img-responsive {
content: url("https://cdn.pixabay.com/photo/2017/07/18/18/24/dove-2516641_960_720.jpg") !important;
}
And if you need different images on different pages kindly use below code in custom css field, You will need to page-id for this kindly follow the document given below for how to get Page-id,
https://www.competethemes.com/blog/find-page-id/
.page-id-44 .page-mycarousel .img-responsive {
content: url("https://cdn.pixabay.com/photo/2016/11/14/04/14/asia-1822569_960_720.jpg") !important;
}
Changed images url according to your need.
Thanks