Hi Sisvan, 
The flash that you are seeing is a FOUC a flash of unrelated content – there might be some code we could give you to inject that would help this.
Can you send us a link to the site and we will take a look for you?
Kind regards
John
Hello,
Thank you for your answer I hope you will be able to fix this.
Here is the website: http://www.franckmuller.com
The translations are in the footer. It correctly displays one language at a time.
Best regards,
Hi Sisvan,
The flash of white is required for the Multilingualizer to hide the text as per the users preferences.
We are working to improve this in a future upgrade, look out for some news on this.
In the meantime, a cosmetic fix might be:
#desktopNav, .title-desc-inner {
 animation: fade-me-in 1.5s;
}
@keyframes fade-me-in {
 0% {opacity:0;}
 80% {opacity:0;}
 100% {opacity:1;}
}
This gently fades in the page and is perhaps less intrusive than the white flash?
I tried and it added a fade-in effect on the text after the white screen, it didn’t improve, so I’m waiting for a fix, hopefully soon.
Dear Sisvan, I wanted to let you now that you could tried this fix to help with the navigation on your website :
            #multilingualizerloadingscreen {
    position:fixed;
    width:100%;
      height:100%;
    background-color: black;
    background-repeat:no-repeat;
    background-position:center, bottom right;
    z-index:99999999;
     top:0px;
     left:0px;
     transition : visibility 0s 0.3s, opacity 0.3s linear
  }
  #multilingualizerloadingscreen.loaded {
    opacity:0;
visibility: hidden;
  }          
Just replaced the all by the one I’ve copied above and it might do the trick ! (it did for me, it’s a little better, not great, but better !)
Please login or Register to submit your answer
