skip to Main Content

I am using materialize (www.materializecss.com) to develop and website. I am using icons (similar to glyphicons in bootstrap) to make them appear as buttons. I am unsuccessful so far.

Js Fiddle for the same: https://jsfiddle.net/a06n54pa/

I want the images to appear similar to how the reply, retweet and favorite buttons of twitter.

I want the images to appear similar to the reply, retweet and favorite buttons of twitter as shown in picture.

Thanks in Advance.

2

Answers


  1. You could just wrap a button with an anchor tag, or in your case your button icon.

    Something like this should work.

    <button><a href="#"><i class="anyIconYourUsing"></i></a></button>

    Login or Signup to reply.
  2. you are using materializecss framework which have material icon try to include glyphicons from bootstrap customize tool or use icomoon to create custom font icon build

    hope this help

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search