Hi there,
I am using a full-width Slideshow with text in a frame on the right side. On a small display (e.g. smartphone) the text jumps to the left (< 768px). It is important that the text stays on the right side, since I use an image with a person on the left – she shouldn’t be covered with text.
How can this be fixed?
Thanks!
Henning
Hi Henning,
Can you post the link to your website please?
Regards,
Josue
Hi Josue,
at the moment, I can’t.
But it’s easily reproducible:
1. New Page
2. Full width slideshow
3. Add image and text/caption, selecht “right framed”
4. Save
5. Resize window, if < 768px text will stick to the left side.
Hi!
You can add this on QuickCSS:
@media only screen and (max-width: 767px) and (min-width: 320px) {
.responsive #top .slideshow_caption .avia-caption-content {
font-size: 13px !important;
text-align: right;
}
}
Cheers!
Ismael
Ismael, thanks a lot! That works great for the caption, but the title stays on the left side. I’ve tried to use .avia-caption-title, but that doesn’t work?!
Hi!
add this to Quick CSS as well:
.avia_transform .av_slideshow_full .avia-caption-title {
text-align: right;
margin-right: 100px;
}
Adjust number for margin-right to your needs.
Best regards,
Andy