Adding phone number at top

Discussion in 'ButterBelly WordPress Theme' started by sbacigalupi, Apr 21, 2014.

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

    sbacigalupi Member

    Joined:
    Feb 17, 2014
    Messages:
    35
    Likes Received:
    1
    My client is asking if we can put the phone number at the top of the slideshow, just below the logo, far-right justified, kind of like how it shows up at the top of the footer with the little mobile phone icon.

    Would this be possible? I imagine it would involve modifying the template of the page... I don't know PHP so I'm not sure how to accomplish this. I'm hoping I can copy the relevant code from the footer and just apply it to the header.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to header.php present in your theme directory and add the code given below

    Code:
     <div class="top-cantact"><p>1234567890</p></div>
    check image for reference

    2014-04-21_1243.png


    now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    div.top-cantact p {
    padding: 7px 0 1px 30px;
    font-size:16px;
    font-weight:bold;
    background: url(ENTER YOUR IMAGE ADDRESS HERE) left center no-repeat;
    background-position:8% 100%;
    display: inline-block;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  3. sbacigalupi

    sbacigalupi Member

    Joined:
    Feb 17, 2014
    Messages:
    35
    Likes Received:
    1
    Thanks, this worked.
     
Thread Status:
Not open for further replies.

Share This Page