Hello Summer Sale!
Exclusive season-opening discount on TheGem theme.
Limited time offer.

Okay
  Public Ticket #946492
Icon for Top Area
Closed

Comments

  •  2
    Jordan started the conversation

    Hello!

    Love the Theme! LOVE IT! I'll make a review after I finish the site. I have bought 2 licensees and will use more in the future for other projects.

    How do i change the icon for email in the top area. It is currently headphones. I need a mail icon :)

    Thanks,

    Jordan

  • [deleted] replied

    Hi,

    Sorry, I don't uderstand you. As i can see in top area is all right on your site.


  •  2
    Jordan replied

    Sorry,

    I mean't the headphone icon to the left of my phone number in the top area.

    How do I change the headphone icon to a phone icon in the top area?

    Thanks

  • [deleted] replied

    Please insert next code to Custom CSS field in theme options:

    .top-area-contacts .gem-contacts-phone::before {
      content: "\e625";
    }

  •  2
    Jordan replied

    Hi Max,

    I added your custom CSS, but unfortunately it just added the 'e625' text and not icon.

    http://eandw.whimsiecreative.co.uk 

    Thanks,

  • [deleted] replied

    You made a mistake. Not 'e625'. You need '\e625' and remove space.

    Your code:

    .top-area-contacts .gem-contacts-phone: before {
      content: "e625";
    }

    Necessary code:

    .top-area-contacts .gem-contacts-phone:before {
      content: "\e625";
    }