Sonya Lynn Designs

Blogging McBloggerson

  • About Me
  • My Blog
    • WordPress How To
    • WordPress Plugins
    • WordPress Themes
You are here: Home / Wordpress / Wordpress Themes / Genesis Theme Framework / Customizing Widget Footers in Genesis Themes

Customizing Widget Footers in Genesis Themes

February 2, 2019 by Sonya Lynn Designs Leave a Comment

I was pleased to see how easy it was to change the Genesis sample theme footer widgets. There were 3 widgets, and with a few simple changes to code, there are now 4 widgets.

#1 Edit Child Theme File – Funtions.php

Update widget number to 4.

add_theme_support( 'genesis-footer-widgets', 4 );

#2 Edit Child Theme File – Style.css

Update calculation of footer widget area to 4.

.footer-widget-area {
    float: left;
    margin-bottom: 0;
    width: calc(100% / 4);

Done!

Related

Filed Under: Genesis Theme Framework

Leave a Reply Cancel reply