Site logo

Archived topic

How to show menu at right side of copyright?

3 replies · Started by Chandan on December 23, 2016

Viewing posts 1–4 of 4

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.

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 :)

That did the trick. Thanks Tom.

You're welcome :)

This archived topic is closed to new replies.