Hello,
I found some old posts in the forum regarding changing the caption position in the fullscreen slider, but the solutions don’t seem to work for me (see post https://kriesi.at/support/topic/fullscreen-slider-caption-positioning).
Can you please advise how to adjust both the horizontal and vertical position of the caption?
Thanks and regards
Hey rkoele!
Send us a link and we’ll take a look. You can set your reply as private if you wish.
Also paste the full contents of your Quick CSS field here so we can check the CSS your using.
Regards,
Elliott
Hi!
Try adding this to your custom CSS.
.avia-fullscreen-slider .caption_bottom .slideshow_caption {
bottom: auto !important;
top: 200px !important;
}
If you only want to move it higher on mobiles then try this.
@media only screen and (max-width: 479px) {
.avia-fullscreen-slider .caption_bottom .slideshow_caption {
bottom: auto !important;
top: 200px !important;
}
}
Regards,
Elliott
Hi Elliot,
Works perfect.
Thank you!