icons with fontawesome do not load css styles in android browsers

0

I have these icons that look good on PC but Android does not take styles. also an image in parallax does not appear and the menu does not appear, I'm using modernizr and I do not know if the error is here or in js ....

the console tells me this.

This site seems to use a positioning effect linked to the displacement. This may not work well with asynchronous panning;

Accessing with my public ip gives me this error.

                          CONTACT             [email protected]

        <p class="text-center redes">
            <a href="#">
                <i class="fa fa-twitter fa-2x ikon">
                    <span class="htxt">Twitter</span>
                </i>
            </a>



            <a href="#">
                <i class="fa fa-linkedin fa-2x ikon">
                    <span class="htxt">Twitter</span>
                </i>
            </a>

        </p>
    </div>



#contact  a {
  background: #333;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #f2f2f2;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  margin-right: 50px;
  -moz-transition: background-color .5s ease;
  -o-transition: background-color .5s ease;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
  width: 60px; }
    
asked by Rafael Hernández 08.06.2017 в 21:40
source

1 answer

0

Please, if the problem is visual, can you attach screenshots of the error, when you test it on android you are opening using the IP of your machine where you have running the app? If so, it is likely that your assets are not being shared. You also do not mention if you have it running under a server type NODEJS or it is only an html. You can also use the Chrome Developer tools with the chrome of your Android and thus you can be sure if you are actually loading FontAwesome or maybe it is a hidden problem in your CSS. Debug App with Chrome Dev Tools

    
answered by 08.06.2017 в 21:50