mattlawck of StudioPress
8/3/2018 - 4:03 PM

Add Footer Widgets

Add Footer Widgets

/* Footer Widgets for Sample Theme v1.9.2 ----------- */

.footer-widgets {
  border-top: 2px solid #1e1e1e;
	clear: both;
	line-height: 1.5;
	overflow: hidden;
	padding: 32px 0 16px;
	padding: 2rem 0 1rem;
}

.footer-widgets p {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.footer-widgets .widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

.footer-widgets-1 {
	margin-right: 4.166666666%; /* 48px / 1152px */
}
<?php
//* Do NOT include the opening php tag shown above. Copy the code below to the end of your functions.php file.

//* Add support for 4-column footer widgets
add_theme_support( 'genesis-footer-widgets', 4 );
<?php
//* Do NOT include the opening php tag shown above. Copy the code below to the end of your functions.php file.

//* Add support for 3-column footer widgets
add_theme_support( 'genesis-footer-widgets', 3 );