How Do I Add Phone Number And Address To Header...

Discussion in 'Dzonia WordPress Theme' started by adefeo777, Mar 18, 2013.

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

    adefeo777 Member

    Joined:
    Nov 21, 2012
    Messages:
    45
    Likes Received:
    1
    Location:
    South Carolina
    I would like to add the phone number and address info -- as text, not just an image -- to the header as shown in the image I have provided. Can you please give me instructions on this? Thank You!



     

    Attached Files:

  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Go to the header.php file present in your theme directory and paste the code given below at the line number 95.
    Code:
    <div class="header_text"><a class="heading">Phone Number:</a><p>333-33333333 <br/>Address 1234 place Somewhere, US -2355566 </p></div>
    For the reference see the image given below
    [​IMG]

    Now,
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .header_text {
    text-align: right;
    }
    a.heading {
    font-size: 35px;
    color: #1e678d;
    }
    .header_text p {
    font-size: 15px;
    color: violet;
    }
    This will solve your issue.
     
  3. adefeo777

    adefeo777 Member

    Joined:
    Nov 21, 2012
    Messages:
    45
    Likes Received:
    1
    Location:
    South Carolina
    Thanks, Worked Perfectly!
     
Thread Status:
Not open for further replies.

Share This Page