• Resolved algirdas

    (@algirdas)


    I like your theme!
    How can I make the footer have only 1 or 2 widgets instead of three? Is there a reference you could point me to that would explain how to modify footer.php?
    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Tomas Mackevicius

    (@tomasm)

    Search for “Three footer widget areas” in style.css of main theme – in section 12.1.

    Copy that code to same section of child theme. I guess you can make left widget 100% and others 0%:

    #footer-widgets.three #footer-widget-left {
    	float: left;
    	width: 100%;
    	padding-right: 2.3%;
    }

    For other widgets put width: 0%; Check the padding if you need it.

    Thread Starter algirdas

    (@algirdas)

    Thank you! That worked.
    I hadn’t thought of modifying the CSS rather than footer.php.

    Theme Author Tomas Mackevicius

    (@tomasm)

    When you’re finished, please share your work results 😉

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘tinyforge change number of footer widgets’ is closed to new replies.