Change the "Call Us Phone Number" area...

Discussion in 'BlackBird WordPress Theme' started by adefeo777, Jan 31, 2014.

  1. adefeo777

    adefeo777 Member

    Joined:
    Nov 21, 2012
    Messages:
    45
    Likes Received:
    1
    Location:
    South Carolina
    Can you please instruct me on how to change the "Call Us Phone Number" area to look like the attached image? Thank You!
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

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

    Go to the Appearance -> Theme Options -> General Settings panel in your dashboard
    and put "Call Us Now" text in the Top Right Contact Details section and put "803-648-1313" in the Home Page Top Right Address section.

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

    Code:
    img.call-us {
    display: none;
    }
    .header-info {
    text-align: center;
    }
    .header-info p.cell {
    color: black;
    font-size: 25px;
    }
    .header-info p {
    color: red;
    font-size: 40px;
    line-height: 28px;
    } 
    You can change the value of "font-size" and "line-height" as per your requirement.
    In place "red" you can put your color or color code.
    This will solve your issue.
     
  3. adefeo777

    adefeo777 Member

    Joined:
    Nov 21, 2012
    Messages:
    45
    Likes Received:
    1
    Location:
    South Carolina
    Thank You Piyush! One more question, is there a way to make the "Call Us Now 803-648-1313" disappear when the "Tap To Call" Button Appears in responsive mode?
     
  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:
    @media only screen and (max-width: 480px){
    .header-info p {
    display: none;
    }
    .header-info p.cell {
    display: none;
    }
    }
    @media only screen and (max-width: 767px){
    .header-info p {
    display: none;
    }
    .header-info p.cell {
    display: none;
    }
    } 
    This will solve your issue.
     

Share This Page