• Hello, I’d like for my footer to take up less space and be more compact. Is it possible for me to move my copyright either closer to my other text or to the right, and then get rid of the free space on the top and bottom?

    For the copyright, I added the following code to my child theme but it didn’t do anything:

    #text-5 div.textwidget{
    	text-align:right;
    }

    Site link

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Use a tool like Web Developer broower extension (Chrome) or the equivalent in whatever browser you choose – find the css that controls that element and adjust the height –

    .site-footer
    .footer-widget-container
    .columns-2

    Try adding a height to each of those to get the results you are looking for.

    Hi ppippi

    Try this code maybe it will help

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    .site-footer {
        float: left;
        width: 100%;
        padding: 0;
        padding: 0;
        color: #464849;
        background-color: #eaecee;
    }
    .footer-widget-container {
        float: left;
        width: 100%;
        height: 220px;
    }

    Try my reply in this thread here, there are bottom margins applied to the <section> elements of the footer.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: Make] How to remove extra space in footer’ is closed to new replies.