Hey Josh,
This is happening because of your custom CSS being applied for the screens under 769px in width, please find the following code:
@media(max-width: 769px) {
.page-id-547 div.x-container.max.width {
padding:0 !important;
}
.soliloquy-container .soliloquy-next {
background: rgba(0,0,0,0) url(https://carbonart45.com/wp-content/uploads/2017/02/right-arrow-2.png) no-repeat scroll 50% 50% !important;
}
.soliloquy-container .soliloquy-prev {
background: rgba(0,0,0,0) url(https://carbonart45.com/wp-content/uploads/2017/02/left-arrow-2.png) no-repeat scroll 50% 50%!important;
}
And replace it with:
@media(max-width: 769px) {
.page-id-547 div.x-container.max.width {
padding:0 !important;
}
}
.soliloquy-container .soliloquy-next {
background: rgba(0,0,0,0) url(https://carbonart45.com/wp-content/uploads/2017/02/right-arrow-2.png) no-repeat scroll 50% 50% !important;
}
.soliloquy-container .soliloquy-prev {
background: rgba(0,0,0,0) url(https://carbonart45.com/wp-content/uploads/2017/02/left-arrow-2.png) no-repeat scroll 50% 50%!important;
}
Your code had a missing curly bracket, I just fixed it for you and now your arrows should display correctly.
Don’t forget to clear all caches including your browser’s cache after updating the code. Let us know how this goes!