Html – Wrong letters (sometimes)

I have created a website with wordpress and i have a bulleted list on it as follows:

Pros

Read More
  • realistic colors
  • very sharp

The problem is sometimes (like each fifth time) when i load the page in Chrome, the letters of the word Pros are wrong like Qspt. See the following picture:

enter image description here

Does anybody have an idea?

Related posts

1 comment

  1. Your hints got me on the right path. It was a javascript issue in ‘jquery.appear‘:

    if ($('.review-wrapper').length) {
        $('.review-wrapper').appear().on('appear', function(event) {
          // this element is now inside browser viewport
          var $this = $(this);
          if ($this.hasClass('delay-animation')) {
              $this.removeClass('delay-animation');         
          }
        });
        $.force_appear(); // if it's right there on document.ready
    }
    

    It seems that force_appear was responsible for the wrong letters. So I am using force_process option now instead:

    if ($('.review-wrapper').length) {
        $('.review-wrapper').appear({force_process: true}).on('appear', function(event) {
          // this element is now inside browser viewport
          var $this = $(this);
          if ($this.hasClass('delay-animation')) {
              $this.removeClass('delay-animation');         
          }
        });
    }
    

Comments are closed.