Place arrows higher

Add this code to the Custom CSS field on the Appearance tab of your YouTube Gallery widget’s settings:

div.yottie-widget-feed-section-arrow {
top: 110px !important;
margin-top: 0 !important;
}

@Max is there a way to place the arrows completely underneath for mobile?

1 Like

Unfortunately, it’s impossible to move the arrow under the videos, but you can place at the very bottom of the video using this code:

@media (max-width: 500px) {
  .yottie-widget-feed-section-arrow {
    bottom: 0;
    top: unset;
  }
}
1 Like

No worries Max! thank you!!

1 Like