-
AuthorPosts
-
April 2, 2017 at 6:03 pm #770687
I have a problem with my pictures in the Fullscreenslider on mobile using (iPad).
Landscape Modus on iPad is ok.But in Portrait Modus the Picture is half cutted.
What can I do, that the picture is seen in full width?April 5, 2017 at 7:27 am #772260Hey McFly,
Thank you for using Enfold.
I tried to access the site but the authentication (.htaccess) details are not working. Could you please provide a screenshot of the issue? And please note that the images in the full screen slider are added as background and their background-size property (https://www.w3schools.com/cssref/css3_pr_background-size.asp) are set to “cover” which means that they will cover the entire slider container but parts of the images might be cut off in order to keep their aspect ratio. One workaround is to add another slider (full width) that is specifically created for mobile then toggle the sliders’ display properties with css media queries.
// http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/
Best regards,
IsmaelApril 5, 2017 at 8:27 am #772301Hi Ismael! I work exclusively and forever just with Enfold. It’s the Best! ;)
I’ve tried some “cover” and others, but the picture is always half cutted.
Maybe, you’ll have a look again in the system. Thanks!April 7, 2017 at 3:42 am #773644Hi!
The background-size property is already set to “cover” which is why the image overflows outside the slider container. Another workaround is to adjust the background-position property so that the focal point of the image is visible in the slider container.
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { .avia-fullscreen-slider .avia-slideshow > ul > li { background-position: 70% 50% !important; } }
If this is not working, try this:
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { /* For portrait layouts only */ .avia-fullscreen-slider .avia-slideshow > ul > li { background-position: 70% 50% !important; } }
Adjust the value of the background-position as needed. And don’t forget to remove browser cache or hard refresh before checking the page.
Regards,
IsmaelApril 7, 2017 at 8:30 am #773758Thank you very much! I think the problem is solved!
Because of this great support, all my clients will get ENFOLD in the future further more!
Thank you!!!April 8, 2017 at 10:58 am #774433Hi,
Great, glad we could help and thanks for the kind words :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardApril 8, 2017 at 7:12 pm #774647Can be closed, thank you!
April 9, 2017 at 10:58 am #774881 -
AuthorPosts
- The topic ‘Responsive problems Fullscreenslider’ is closed to new replies.