[Resolved] Adding Rows Above Menu

Home Forums Support [Resolved] Adding Rows Above Menu

Home Forums Support Adding Rows Above Menu

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #235961
    Brenda

    Hi Tom,

    I would like to add two rows above my menu. One will contain content such as phone number, email, and social links. The other row will contain a centered logo and company name. I would appreciate any assistance.

    Thank you,
    Brenda

    #236017
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    The logo and company name can be done using the default header. Just upload your logo in “Customize > Site Identity” and center it in “Customize > Layout > Header”.

    For the top bar, you could do something like this in the Before Header hook inGP Hooks:

    <div class="top-bar">
        <div class="inside-top-bar grid-container">
            <div class="grid-50 tablet-grid-50 mobile-grid-100 top-bar-left">
                <a href="mailto:me@myemail.com">Email me!</a> | 1-234-56789
            </div>
            <div class="grid-50 tablet-grid-50 mobile-grid-100 top-bar-right">
                <a href="http://facebook.com/me"><i class="fa fa-facebook"></i></a>
                <a href="http://twitter.com/me"><i class="fa fa-twitter"></i></a>
            </div>
        </div>
    </div>

    Then style it with some CSS:

    .top-bar {
        background: red;
        color: white;
    }
    
    .top-bar-right {
        text-align: right;
    }

    Hope this helps πŸ™‚

    #236083
    Brenda

    Thank you Tom!!!!!!!
    This was a teaching moment for me!

    #236111
    Tom
    Lead Developer
    Lead Developer

    You’re welcome! πŸ™‚

    #236141
    Brenda

    Hi Tom,

    If the default header places the logo/company name above (below, right,left) the menu, how would I place the log to the left or right of the menu in the same row?

    Brenda

    #236221
    Tom
    Lead Developer
    Lead Developer

    If I understand correctly, you would make the Navigation position either “Float Left” or “Float Right” in “Customize > Layout > Primary Navigation”.

    #236245
    Brenda

    Yes, and the logo/company name would float left or right of the navigation.

    #236254
    Tom
    Lead Developer
    Lead Developer

    The options I mentioned should do exactly that πŸ™‚

    #236315
    Brenda

    Thank you.

    #236461
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.