Dear Customers! We're out of the office from the 6th of October to the 11th of October. We sincerely apologize for the inconvenience. For WordPress 5.5.* related issues, please visit this article

Okay
  Public Ticket #817900
phone number in header
Closed

Comments

  •  1
    deb started the conversation

    How can i get my telephone number in the Header next to my logo please

  •  361
    Filip replied

    Hello there,

    This will require a little modification of the theme's code. Please edit your header.php file and change this line:

    <div class="logo">
    

    to:

    <div class="logo">
        <div class="header-phone">Phone: <a href="tel:1-800-555-1212">1-800-555-1212</a></div>
    

    After that, you will need to add some CSS styling:

    .header-phone {
        position: absolute;
        left: 140px;
        width: 200px;
        top: 50%;
        margin-top: -10px;
        color: #fff;
    }

    You can of course add some extra CSS attributes like font-size, color, weight etc so it looks perfectly on your website. You can learn how to add custom CSS code by following this article.

    Please let us know if you have any questions. :)

    Kind Regards,
    Veented Team

  •  1
    deb replied

    Thank you very much for your kind help. All sorted now