-
AuthorPosts
-
July 3, 2014 at 8:01 am #286527
Hello
I have some screenshots to show to you.
It’s about the visibility of the semicircle anchor when I use the Fullscreen Slider AND header transparent or not.1/ iPhone 5 – header transparent: no > it’s ok
2/ iPhone 5 – header transparent: yes > the anchor is not visible
3/ iPad 2 – header transparent: yes / orientation: landscape > the anchor is partially visible
4/ iPad 2 – header transparent: yes / orientation: portrait > it’s ok
What do you thonk of that?
Thank you.July 7, 2014 at 5:01 am #287821Hi pako69!
I’ll tag the topic for Kriesi as I’m not currently getting that same thing when I view the site on my personal ipad or with any emulators.
For the screenshots, is it on first load of the page/refresh with each orientation or with the page live and then you turn the screen?
Best regards,
DevinJuly 7, 2014 at 8:06 am #287852Hello Devin
Yes it it on first load.
Here another screenshot, on my iPhone 5S but not with Safari, it’s Chrome:
Thank youJuly 8, 2014 at 1:21 pm #288486Hi!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) { .responsive #top #header { position: absolute; }}
then please flush browser cache on your mobile device and refresh your page a few times
Cheers!
YigitJuly 8, 2014 at 3:43 pm #288561Hello Yigit
Well.. it works only for iPhone and only for the homepage… If I keep your CSS for the whole site: all my pages/posts layouts are broken because all content goes on top… /-)
So I use:
.responsive #top.home #header {position: absolute;}
(note that it do not change anything for the the iPad/landscape), i always have this:
July 8, 2014 at 3:48 pm #288566Hey!
Please try
@media only screen and (max-width: 1024px) { .responsive #top.home #header {position: absolute; }}
Cheers!
YigitJuly 8, 2014 at 3:50 pm #288567I had already done but it does not change anything
July 9, 2014 at 5:13 am #288813Hey!
Thank you for using the theme.
I don’t see the issue on iPad or iPod touch 5 which has same exact resolution as iPhone if I am not mistaken. The next section arrow is visible on those two devices, landscape or portrait. I don’t want to suggest changing the bottom position of the anchor link but if you want you can try this:
.avia-ipad #top .scroll-down-link { bottom: 20px; }
Or for iPhone:
.avia-iphone #top .scroll-down-link { bottom: 20px; }
Cheers!
IsmaelJuly 9, 2014 at 4:33 pm #289079Hello Ismael
I’m afraid you are not talking about the same thing as me…
You are talking about the scroll-down-link but no me.
Here is a screenshot from a new iPad Air:
July 10, 2014 at 6:10 am #289334Hi!
Thank you for the screenshot.
Yes, we’re talking about that thing. I just call it scroll-down-link or arrow base on its selector. I’ll ask the rest of the support team to check it. It renders fine on iPad and iPod touch using Chrome browser.
Regards,
IsmaelJuly 15, 2014 at 8:35 am #291435Hi guys,
I would just like to add that I’m experience the exact same thing on my iPad Air in landscape mode, with Safari. Would love to know how to fix this…
Cheers,
KattaJuly 15, 2014 at 8:40 am #291437July 18, 2014 at 10:23 am #292889@pako69 – maybe you could try this in your style.css:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
.avia-ipad #top .scroll-down-link {bottom: 20px;}
}
Worked for me. It seems there’s a bug in Safari that adds extra 20px space to height to the fullscreen slider element and that’s why the scroll to next section icon seems to disappear below the screen.Don’t know if this is the most graceful solution, but it does seem to work on my iPad with Safari in landscape mode without affecting Chrome that works just fine as it is.
July 20, 2014 at 10:54 am #293589Hello @Kattac
Thanks for the tips, it works BUT it also target Chrome :-(
.avia-ipad is a class you have had to the fullscreen slider ?July 21, 2014 at 5:23 pm #293922Hi!
You can try to add the webkit class to exclude Chrome like:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) { .avia-webkit.avia-ipad #top .scroll-down-link {bottom: 20px;} }
Cheers!
Peter -
AuthorPosts
- You must be logged in to reply to this topic.