2

this is for safari.

This is my test website: "http://warmfarewells.org/plumber/" I had this problem in Chrome as well, but I used this code and white space since disappeared. The only problem now is that it is still visible in safari.

#cye-workaround-body-image {
    height: auto !important;
}
#cye-workaround-body {
    height: auto !important;
}

I have tried everything I can think of, but nothing seems to be working.

PS: I am using Mixit javascript for gallery, when I remove it, both gallery and white space disappears. But I want to keep gallery, and want to get rid of white space. Thanks

blunor
  • 49
  • 1
  • 6
  • Can you provide more of your code? It may be a type/bug in your code that Safari is not responding well to. I'm seeing some stuff come through in the Safari web console and not the Chrome web console. Scan your code for any silly errors. Also, feel free to reference the Safari console! – Full Stack Alien Nov 07 '15 at 18:15
  • thank you, is it safe to provide FTP credentials here? because it is test website, so I hope It would be safe.. – blunor Nov 07 '15 at 18:22
  • @blunor it is never safe to post credentials for your FTP site in a public forum, even if it's a "test" site. Unless you don't mind your server being broken into and people using it for less-than-noble purposes. – alroc Nov 08 '15 at 12:32
  • thank you :) I will keep it in mind next time. – blunor Nov 08 '15 at 16:21

1 Answers1

2

Add this to your CSS:

footer {
  overflow: hidden;
}

The problem is your image animation in the footer.

max
  • 8,632
  • 3
  • 21
  • 55