Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    yes of course, you can set an icon for the link using only the css.
    in example you can use the :before pseudo element like

    a.compare:before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      background: url( your icon ) no-repeat center;
    }

    this is a possible solution. Also, if you are using a font icon like FontAwesome you can use it in this way

    a.compare:before {
      content: 'your-icon';
      font-family: FontAwesome;
    }

    Best regards.

    Thread Starter lonewolf70

    (@lonewolf70)

    Thank you very much for your help, it work′s great.

    Now i have a connection ask. How can i set the wishlist Link and the Compare Link in one row. Float: left in css don′t work.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Icon at Text Link’ is closed to new replies.