Hide arrows on slick slider in Center Row Theme

Is it possible to hide the left and right nav arrows on the items/show.php page in the Center Row theme? I found options to disable them on the front page, but nowhere else. The most any of my items have is 2 images, so it’s confusing to have it there.

These are the arrows I’d like to hide. The user can just click the thumbnails at the bottom of the slider to navigate.

You can edit the styles for that slider using the CSSEditor plugin. In the CSSEditor configuration, paste the following:

.chocolat-wrapper .chocolat-right.active, 
.chocolat-wrapper .chocolat-left.active {
    display: none;
}

Perfect. This is exactly what I needed.

Thank you!