Remove phone image and display other images instead

Discussion in 'Infoway WordPress Theme' started by aarliaud, Oct 30, 2013.

Thread Status:
Not open for further replies.
  1. aarliaud

    aarliaud Member

    Joined:
    Oct 28, 2013
    Messages:
    30
    Likes Received:
    0
    Hello,

    I put in the General Settings >>Top Right Contact Details box, the <imag src=”url”> of images I wanted to display in the header. It works but I don’t know now how to remove the phone image because when I tried
    .header .contactinfo img {
    display: none;
    } all images disappeared.

    Thanks in advance,
    Best Regards,
     
  2. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .contactinfo img {
    display: none;
    }
    .contactinfo .calldetails img {
    display: run-in;
    }
    This will solve your issue.
     
  3. aarliaud

    aarliaud Member

    Joined:
    Oct 28, 2013
    Messages:
    30
    Likes Received:
    0
    Hello,
    Thank you for your solution but it did not fix the issue. All images from " Top Right Contact Details" section are removed.
    Best Regards,
     

    Attached Files:

  4. Piyush

    Piyush Support Staff

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

    aarliaud Member

    Joined:
    Oct 28, 2013
    Messages:
    30
    Likes Received:
    0
    Hello,
    Sorry, I guessed you already got it from another recent post of mine : http://wp.vitamib.com/.
    Best Regards,
     
  6. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    img[alt="Contact Info"] {
    display: none;
    }
    This will solve your issue.
     
  7. aarliaud

    aarliaud Member

    Joined:
    Oct 28, 2013
    Messages:
    30
    Likes Received:
    0
    Hello,
    Thank you very much, this code works great.
    Best Regards,
     
Thread Status:
Not open for further replies.

Share This Page