Reply To: Separating Space Footer Widgets

Home Forums Support Separating Space Footer Widgets Reply To: Separating Space Footer Widgets

Home Forums Support Separating Space Footer Widgets Reply To: Separating Space Footer Widgets

#91212
Silvio

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