Remove "Phone Image"

Discussion in 'Infoway WordPress Theme' started by tsays, Aug 13, 2013.

  1. tsays

    tsays New Member

    Joined:
    Feb 14, 2013
    Messages:
    11
    Likes Received:
    0
    I won't be taking phone calls from this website. How can I remove the "phone image" in the header?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .header .contactinfo img {
    display: none;
    }
    a.btn {
    display: none;
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .header .contactinfo{
    float: none;
    text-align: center;
    margin-right: 0px;
    }}
    @media only screen and (max-width: 480px){
    .header .contactinfo{
    float: none;
    text-align: center;
    }}
    This will remove the phone image.
     
    justglenn likes this.
  3. jackieniznik

    jackieniznik New Member

    Joined:
    Sep 9, 2013
    Messages:
    2
    Likes Received:
    0
    I'm not having luck with it removing the phone image
     
  4. jackieniznik

    jackieniznik New Member

    Joined:
    Sep 9, 2013
    Messages:
    2
    Likes Received:
    0
  5. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    You have posted colorway theme query in the infoway thread. That's why last solution is not working.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .call-us {
    display: none;
    }
     
    @media only screen and (max-width: 480px){
    .header-info a.btn {
    display: none;}}
    
    I hope it will work:) .
     
  6. justglenn

    justglenn New Member

    Joined:
    Aug 1, 2013
    Messages:
    12
    Likes Received:
    0



    I used this and it worked, but I'd like to change the font on my site. Especially the font that is next to where the phone was.
    How do I do this?
     
  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Hello,

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .header .contactinfo span.calldetails {
    font-family: symbol;
    font-size: 17px;
    }
    In place of "symbol" you can put your font type
    and you can also adjust the value of "font-size" as per your requirement.
     

Share This Page