How can i adjust arrow heigt?

Hi, I would like to have the arrows at the same height as the text on mobile, can someone help me with this

https://5c3g22rzl7yv9dpg-81021141316.shopifypreview.com/pages?preview_key=f81affa8aaa4998c5d633afa15…

try adding this in your base.css file or your custom css file

@media screen and (max-width:500px){
button.image-text-btn-prev-template--24039743357252__ss_video_with_text_5_iyV86z,.button.image-text-btn-next-template--24039743357252__ss_video_with_text_5_iyV86z{
top:30%;
transfrom:translate(-30%);
}

Hi @User026

Please add this code to Custom CSS of that section to do that

@media (max-width: 749px) {
.image-text-btn-prev-template--24039743357252__ss_video_with_text_5_iyV86z, .image-text-btn-next-template--24039743357252__ss_video_with_text_5_iyV86z { top: 30% !important; }
}