Telephone Image Removal and Replacement with Banner Ad

Discussion in 'Infoway WordPress Theme' started by 10sgfraz, Jan 29, 2014.

  1. 10sgfraz

    10sgfraz New Member

    Joined:
    May 3, 2013
    Messages:
    18
    Likes Received:
    1
    Hello,

    I want to remove the telephone image on my site (as well as the phone number, which I know how to remove) so the banner ad that's just below it rises into place within the right header of my site.

    You will see the current site appearance here:

    http://GiftBasketBusiness.com/

    How do I remove the telephone image to the left of the toll-free number so the banner image is better positioned on the site?

    Thank you,

    Shirley
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

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

    10sgfraz New Member

    Joined:
    May 3, 2013
    Messages:
    18
    Likes Received:
    1
    Thank you for the solution, Piyush.

    I'd like the banner ad to appear a bit higher, directly across from the logo on the left, but I'll work with this right now.

    Shirley
     
  4. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .header .contactinfo {
    margin-top: -30px;
    }
     
    You can adjust the value of "margin-top" as per your requirement.
    This will solve your issue.
     
  5. 10sgfraz

    10sgfraz New Member

    Joined:
    May 3, 2013
    Messages:
    18
    Likes Received:
    1
    Superb solution, Piyush.

    Thank you,

    Shirley
     
    Piyush likes this.

Share This Page