Hi guys
I posted this the other day: https://kriesi.at/support/topic/move-easy-slider-text-positioning/
This fixed my problem perfectly on desktop, but on mobile it has pushed the text up far too high, so that now it it half cut off at the top of the screen.
Any suggestions on what to do here?
I’m thinking I could move it by a % (if that works??), or that there might be a way to turn this CSS off on mobile view?
Thanks
Fleur
Hey Fleur,
Please try adding this code to replace the one that was given before so that it only adjusts for the desktop:
@media only screen and (min-width: 1280px) {
.slideshow_align_caption {
transform: translateY(-100px);
}
}
Best regards,
Jordan
That’s perfect, thank you!