0

I created a wordpress website using the theme Photo from wpexplorer. Everything looks great in Firefox and Explorer, but when viewed in Chrome, the website navigation disappears (sometimes). Sometimes it loads just fine. But upon reload, the navigation disappears. How can I fix this problem for viewing the website in Chrome. http://testhouseforgovernor.com

1 Answers1

0

This is a known bug for Chrome. Its become most prominent within Chrome 32 and there are still some issues within Chrome 33.

Read more HERE

There is one suggested fix out there:

body {
    -webkit-animation-delay: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
    from { opacity: 1; }
    to   { opacity: 1; }
}

It just tells Chrome to re-load the font's opacity which is where the problem lies.

Details from previous SA question found HERE

Community
  • 1
  • 1
Stewartside
  • 20,378
  • 12
  • 60
  • 81