Viewing 1 replies (of 1 total)
  • Hi steelmaiden. Somewhere in your css you have this:

    @media only screen and (min-width: 720px)
    .nav li>a:only-child:after {
      content: "";
      margin: 0;
    }

    which is overriding this:

    @media only screen and (min-width: 720px)
    .nav>li>a:after {
      content: "\f0d7";
      float: none;
      margin-left: 6px;
      font-size: 14px;
      line-height: 1.2em;
    }

    which is overriding this:

    @media only screen and (min-width: 720px)
    .nav li>a:after {
      content: "\f0da";
      float: right;
      opacity: 0.5;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Icons do not load with CDN enabled’ is closed to new replies.