Hey @ahallmark,
Regretfully, there’s no option to change the Next and Previous navigation’s position. But, you can override the position inserting the following CSS in your page’s Content CSS or you could insert it in Theme Options > CSS for global application. Only change the bottom and right values.
/* Integrity stack move the Next and Prev Nav to the bottom of the slider.*/
.flex-direction-nav a.flex-prev,
.flex-direction-nav a.flex-next {
top: auto;
bottom: 30px;
}
/* Integrity Stack move the Next and Prev Nav to the right */
.flex-direction-nav a.flex-prev,
.flex-direction-nav a.flex-next {
left: auto;
}
.flex-direction-nav a.flex-prev {
right: 50px;
}
.flex-direction-nav a.flex-next {
right: 14px;
}
If you want to position both bottom and right, you can combine the setup like this:
.flex-direction-nav a.flex-prev,
.flex-direction-nav a.flex-next {
left: auto;
top: auto;
bottom: 30px;
}

Hope that helps.