Warning: DOMDocument::loadHTML(): Tag template invalid in Entity, line: 12 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag svg invalid in Entity, line: 14 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag path invalid in Entity, line: 15 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag template invalid in Entity, line: 29 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag svg invalid in Entity, line: 31 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag path invalid in Entity, line: 32 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag template invalid in Entity, line: 12 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag svg invalid in Entity, line: 14 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag path invalid in Entity, line: 15 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag template invalid in Entity, line: 29 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag svg invalid in Entity, line: 31 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
Warning: DOMDocument::loadHTML(): Tag path invalid in Entity, line: 32 in /home/customer/www/cre8tivediva.com/public_html/wp-content/plugins/gistpress-develop/includes/class-gistpress.php on line 466
The Genesis child theme Academy Pro has been designed to eliminate the use of the traditional footer widgets. If you would like to add them to your theme, follow the instructions below:
Add the Footer Widgets Area
In this tutorial I will show you how to add a two-column Footer Widget area to Academy Pro. It will reside below the Footer CTA and before the Site Footer.
If you do not want to modify your functions.php file, you can search for Pluginception in the WordPress plugin repository, install and activate it. Then place this code in there. Otherwise, you will add this to the bottom of your theme’s functions.php file. Then save it.
Click “View Raw” in the bottom corner to be sure you grab the entire code.
//* Add theme support for 2-column footer widgets | |
add_theme_support( 'genesis-footer-widgets', 2 ); | |
//* Reposition Footer Widgets Below the Footer CTA Widgets but Before Site Footer | |
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' ); | |
add_action( 'genesis_before_footer', 'genesis_footer_widget_areas', 15 ); |
Style Your Footer Widgets
Now you need to add the styling to them. Go to Appearance > Customize. Select “Additional CSS.” Add the following code and Publish.
/* Add Two Column Footer Widgets to Academy Pro Genesis Child Theme | |
---------------------------------------------------------------------------------------------------- */ | |
.footer-cta { | |
margin-bottom: 40px; | |
} | |
.footer-widgets .widget-title { | |
font-size: 36px; | |
font-size: 3.6rem; | |
} | |
.footer-widgets-1, | |
.footer-widgets-2 { | |
width: 45%; | |
} | |
.footer-widgets-1 { | |
margin-right: 40px; | |
margin-right: 4rem; | |
} | |
.footer-widgets-1 { | |
float: left; | |
} | |
.footer-widgets-2 { | |
float: right; | |
} | |
@media only screen and (max-width: 768px) { | |
.footer-widgets-1, | |
.footer-widgets-2 { | |
float: none; | |
padding: 0 0 15px; | |
width: 100%; | |
} | |
} |
If you are using a caching plugin or have caching enabled on your hosting account, you may need to clear the cache before you can see your changes.
If you would like to me to assist you with adding this to your website, contact me here.