Site logo

Archived topic

Separating Space Footer Widgets

4 replies · Started by Silvio on March 25, 2015

Viewing posts 1–5 of 5

Hi Tom,
Is it possible to achieve a similar structure with Separating Space in the footer area with widgets like in the widgets on the left side?

Greetingxxxx

Hi Tom,
i change the function.php:

	register_sidebar( array(
		'name'          => __( 'Footer Widget 1', 'generate' ),
		'id'            => 'footer-1',
		'before_widget' => '<aside id="%1$s" class="widget inner-padding %2$s" style="background-color:#6a8339; min-height:300px; margin-right:10px; padding-top: 20px;">',
		'after_widget'  => '</aside>',
		'before_title'  => apply_filters( 'generate_start_widget_title', '<h4 class="widget-title">' ),
		'after_title'   => apply_filters( 'generate_end_widget_title', '</h4>' ),
	) );
	register_sidebar( array(
		'name'          => __( 'Footer Widget 2', 'generate' ),
		'id'            => 'footer-2',
		'before_widget' => '<aside id="%1$s" class="widget inner-padding %2$s" style="background-color:#6a8339; min-height:300px; margin-right:10px; padding-top: 20px;">',
		'after_widget'  => '</aside>',
		'before_title'  => apply_filters( 'generate_start_widget_title', '<h4 class="widget-title">' ),
		'after_title'   => apply_filters( 'generate_end_widget_title', '</h4>' ),
	) );
	register_sidebar( array(
		'name'          => __( 'Footer Widget 3', 'generate' ),
		'id'            => 'footer-3',
		'before_widget' => '<aside id="%1$s" class="widget inner-padding %2$s" style="background-color:#6a8339; min-height:300px; padding-top: 20px;">',
		'after_widget'  => '</aside>',
		'before_title'  => apply_filters( 'generate_start_widget_title', '<h4 class="widget-title">' ),
		'after_title'   => apply_filters( 'generate_end_widget_title', '</h4>' ),
	) );

Could I make these adjustments in my child theme ? As I am referring to the ' css ' on the IDs ( footer- 1, etc ... ) ?

For a better understanding , look at my page .
http://fv-grundschule-amhohenfeld.de/

greetingxxx

Hi Tom,
perfect! That's what i mean.

Greetingxxx and have a nice day!

You too! :)

This archived topic is closed to new replies.