Site logo

Archived topic

Align Footer

3 replies · Started by Davide on May 6, 2018

Viewing posts 1–4 of 4

Hi, guys!

I created a website with a left sidebar main navigation. I'd like that the footer was centered with the content area and not with the full website container (left sidebar + content area).

I'm fighting with the CSS without success. Any tricks?

Thanks in advance!

Hi there,

Can you link me to the site in question?

You can edit the original topic and use the private URL field.

Let me know :)

Edited :)

Try this snippet:

add_action( 'after_setup_theme','lh_move_footer' );
function lh_move_footer() {
    remove_action( 'generate_footer','generate_construct_footer' );
    add_action( 'generate_after_main_content','generate_construct_footer' );
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

Let me know.

This archived topic is closed to new replies.