Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @cathy9698!

    The footer on Canape is divided into three sections. The site title and tagline on the left, first footer widget area in the middle, and the second footer widget area on the right.

    Is your goal to eliminate that first section, and divide the footer in half between the two widgets?

    Thread Starter cathy9698

    (@cathy9698)

    Yes, I would like to eliminate the site title on the left, then divide the footer in half between the two widgets.

    Okay!

    We’ll use a bit of CSS to accomplish this:

    .footer-branding {
    	display: none;
    }
    
    .pre-footer .footer-widget-area {
    	width: 100%;
    }

    First, we’re hiding the title and tagline, then we’re expanding the widgets to the full width that’s available. the individual widgets each use half of that space.

    To add this CSS you can use the Additional CSS panel in the Customizer (assuming you’re running at least WordPress 4.7) or with something like the Jetpack Plugin using the Custom CSS Module.

    Let me know how it goes!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move First Footer Widget Area to the left Inbox x’ is closed to new replies.