Viewing 8 replies - 1 through 8 (of 8 total)
  • Hey there helenreeves,

    How are you today?

    If you’re just looking to remove the telephone icon you can do that with some custom CSS. Since the theme has it’s own custom CSS tab which is located in Appearance >> Theme Options >> Styling Options >> Custom CSS you can try adding the following code there:

    .contactinfo img {
    display: none;
    }

    This should remove the icon from your header.

    Hope this helps ??

    Best regards,
    Bojan

    Thread Starter helenreeves

    (@helenreeves)

    Brilliant, that has done that.
    But when you look at the mobile view there is an image tap to call pops up. Must be something to do with the media CSS responsive?
    Thanks for the quick response!

    Hey again,

    Thanks for the clarification, didn’t check smaller resolutions first time I checked your site. Please try adding the following:

    @media only screen and (max-width: 767px) and (min-width: 480px){
    .contactinfo a.btn {
    display: none;
    }
    }

    This should remove the button on smaller resolutions. Please let me know if this works ??

    Best regards,
    Bojan

    Thread Starter helenreeves

    (@helenreeves)

    Hi,

    No unfortunately that doesn’t do it, any more sugestions?

    Thanks Helen

    Hey again Helen,

    Sorry to hear the code didn’t work ??

    Could you please try adding the code without media query, like this:

    .contactinfo a.btn {
    display: none;
    }

    Also is the code added now, did you remove it? I was unable to see the code when inspecting your site.

    Best regards,
    Bojan

    Thread Starter helenreeves

    (@helenreeves)

    Brilliant, that’s done it.

    Thanks

    Hey Helen,

    Glad I could help ?? Have a great day!

    Cheers,
    Bojan

    Thread Starter helenreeves

    (@helenreeves)

    Thank you ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Remove telephone link top right?’ is closed to new replies.