I Would Like To Add More Text...

Discussion in 'Dzonia WordPress Theme' started by adefeo777, Jun 5, 2013.

  1. adefeo777

    adefeo777 Member

    Joined:
    Nov 21, 2012
    Messages:
    45
    Likes Received:
    1
    Location:
    South Carolina
    I would like to add more text (CALL NOW FOR A Free Lasik Evaluation) to the header file, can you please review the attached PDF and advise me. Thank You!
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Go to the header.php file present in your theme directory and add the code given below as shown in the image given below.
    Code:
    <div class="grid_17 ">
            <div class="grid_9 alpha">
                    <div class="contact_content">
                           <p> CALL NOW FOR A </br> FREE LASIK Evaluation </p>
                    </div>
            </div>
            <div class="grid_8 omega">
                    <div class="contact_info">
                             <span>(803) 642-6060 </span>
                             <p>110 Pepper Hill Way, Alken</p>
                             <span>(803) 442-3006</span>
                             <p>336 Georgia Avenue, Ste 102 North Augusta</p>
                     </div>
            </div> 
    </div>
    
    See the image for reference.
    [​IMG]

    Now,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .contact_content {
    text-align: center;
    }
    .contact_content p {
    font-size: 24px;
    color: green;
    font-weight: bolder;
    }
    .contact_info {
    text-align: right;
    }
    .contact_info span {
    font-size: 24px;
    color: blue;
    }
    .contact_info p {
    font-size: 14px;
    }
    This will solve your issue.
     

Share This Page