• I am running a site using your Blanc theme. It suits our need perfectly so far – thanks for that!
    The comments are configured so they are disabled (the comment fields do not appear on our pages).
    For every post that we make there appear 3 icons with the appropriate text.

    The 3rd icon from left is the Comment icon + the text “No Comments”
    Is it possible to hide this (without too much effort)?

    • <span class=”fa-stack”>
      <i class=”fa fa-circle fa-stack-2x fa-blue”></i>
      <i class=”fa fa-comment fa-stack-1x fa-inverse”></i>
      </span>
      No Comments
    • p.s. Curiosity: I see in style.css ver4.0 that the colours are defined:
      .postinfo li a {
      display: inline-block;
      }
      .fa-red {color: #D35134;}
      .fa-green{color: #9BB73C;}
      .fa-blue {color: #002049;}

      What about fa-stack-1x, fa-stack-2x and fa-inverse – where/how are they defined? I presume that fa-stack-1x and fa-stack-2x are the order of layers and fa-inverse in this case stipulates white instead of black colour?

      (After checking http://fontawesome.io/cheatsheet/ 🙂

      thanks on beforehand,
      Vigfús Erlendsson
      Iceland

Viewing 1 replies (of 1 total)
  • Theme Author Anonymous User 13805271

    (@anonymized-13805271)

    Hi vigfuz,

    How about adding following into style.css?

    .postinfo li:nth-child(3) {
    display: none;
    }

    About Fontawesome, everything is written here as you guessed;
    http://fontawesome.io/examples/

    I hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Posts – Is it possible to hide Comments icon and its textfield?’ is closed to new replies.