I’ve searched the forum and experimented with loads of elements but just can’t figure out how you get the main home page image with bits of text floating in.
Like in these two demos;
https://kriesi.at/themes/enfold-wedding/ – different fonts
https://kriesi.at/themes/enfold-construction/ – moving text
I’ve only used the image with caption which doesn’t allow the use of different fonts and sizes.
tx
Great, thanks for your help!
Sorry, just one more thing. I’ve got the caption on ‘right without frame’ – what is the CSS element for me to adjust that positioning a touch using padding or margin?
Also, ‘right without frame’ is left aligned on mobile (iPhone – Safari)
Thank you!
Hi,
To adjust the caption over a bit please adjust this css:
.caption_right .slideshow_caption {
right: 0px;
}
to something like this:
.caption_right .slideshow_caption {
right: 50px;
}
This moves the caption to the left a litle.
Best regards,
Mike
Thanks.
(It’s still left aligned on iPhone portrait)
Hi,
Sorry, I don’t have an iPhone, but please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
@media only screen and (max-width: 767px){
.responsive #top .slideshow_caption {
left: 50% !important;
width: 70% !important;
}
.slideshow_align_caption > H1.avia-caption-title {
font-size: 20px !important;
}
}
Best regards,
Mike
Perfect, thanks so much!