Venture Theme

  • Unknown's avatar

    How can i add my phone # to the top left of all of my pages? I want it to sit at the bottom of the white banner that runs across the top of all my pages. Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi,
    You can do this very easily by using CSS(since WordPress.COM is not allowing us to add custom elements to the header).

    To display a phone number at the bottom of the white banner across all pages, just use :after pseudo class with the navigation menu container like this:

    .menu-menu-1-container:after {
        content: "CONTACT: +1234567890";
        position: absolute;
        color: #2e2e2e;
        left: 20px;
        top: 120px;
    }

    To change the phone number just edit the content property, like this:

    .menu-menu-1-container:after {
        content: "CALL: +0457856124";
        position: absolute;
        color: #2e2e2e;
        left: 20px;
        top: 120px;
    }

    Hope this helps :)

  • The topic ‘Venture Theme’ is closed to new replies.