• I am trying to add my company phone number into my header but am having trouble getting it to show up. I tried using this css but I am fairly new to using css. Can someone tell me where i went wrong and possibly provide a better solution to my problem.

    .h2.site-description:after {
    content: “352-222-2155”;
    }

    I would like to add my number below my tagline and to the right of my menu in my header you can see here:

    https://aquio-gainesville.com

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello GoGoMyYoYo

    You can create a child theme and add this info on a modified version of your header.php

    https://codex.www.ads-software.com/Child_Themes

    Let me know if you need some directions ??

    Hi,

    In the functions.php of your child theme.
    Please try the following codes.

    function customizr_add_phone(){
    echo "<p>123-123-1234</p>";
    }
    add_action('__after_logo','customizr_add_phone');

    Change the 123-123-1234 to your phone number.

    Hope this helps!

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘help adding phone number into my header’ is closed to new replies.