[Resolved] How to show menu at right side of copyright?

Home Forums Support [Resolved] How to show menu at right side of copyright?

Home Forums Support How to show menu at right side of copyright?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #257319
    Chandan

    Hello,

    How can I show menu at copyright location? Maybe copyright at left and menu at right.

    I don’t want to use Footer widget for menu.

    #257412
    Tom
    Lead Developer
    Lead Developer

    Until I add this feature to the theme, the easiest method is to add HTML into your Copyright area in Customize > Copyright.

    Something like this:

    <div class="footer-area">
        <div class="grid-30 tablet-grid-100 mobile-grid-100 copyright-message">
            Your copyright message
        </div>
        <div class="grid-70 tablet-grid-100 mobile-grid-100 copyright-links">
            <a href="URL HERE">First Link</a> | <a href="URL HERE">Second Link</a>
        </div>
    </div>

    Then some CSS:

    .copyright-links {
        text-align: right;
    }

    Let me know if you need more info ๐Ÿ™‚

    #257453
    Chandan

    That did the trick. Thanks Tom.

    #257492
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

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