[Resolved] Horizontal menu in footer menu widget?

  • Author
    Posts
  • #6835

    Andrew Misplon
    Keymaster

    Hi shreddie 🙂

    You can try something like this:

    .site-footer .widget ul li {
        display: inline-block;
        margin-right: 10px;
    }
    
    .site-footer .widget ul li:last-of-type {
    	margin-right: 0;
    }

    Take a look, check out how it looks in smaller screen sizes and we can go from there. Adjust the margin as you’d like.

    #6837

    shreddie
    Participant

    Thanks, that was helpful. I added:

    .site-footer {
        padding: 0;
    }

    To have the menu move up just under the line that separates the footer. I’d like to tighten up the whitespace that separates the menu from the copyright line too. Can you give me the CSS for that?

    #6838

    Andrew Misplon
    Keymaster

    Sure, try adding:

    #colophon .widget {
        margin-bottom: 10px;
    }
    
    .site-footer .site-info {
    	margin-top: 0;
    }
    #6839

    shreddie
    Participant

    Perfect – thanks Andrew!

    #6840

    Andrew Misplon
    Keymaster

    Super 🙂 Glad to hear it’s all sorted. Cheers.

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.

Scroll to top