Classic Slider Video Controls

Hello!

I have a Classic Slider Element on this page:
http://wordpress-252971-786895.cloudwaysapps.com/

and I want to move the navigation controls to a different corner. Is this possible?

I am embedding video and the youtube stuff is conflicting with the location of the navigation.

Appreciate the help!

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.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.