custom widget alignment twenty eleven
-
site: https://www.workingwriterscoach.com
I need help creating the css to align the last three widgets in the code below in one horizontal row:
<div id="primary"> <?php if ( is_active_sidebar( 'main-top-widget-left' ) ) : ?> <div><?php dynamic_sidebar( 'main-top-widget-left' ); ?></div> <?php endif; ?> <?php if ( is_active_sidebar( 'main-top-widget-right' ) ) : ?> <div><?php dynamic_sidebar( 'main-top-widget-right' ); ?></div> <?php endif; ?><?php if ( is_active_sidebar( 'header-widget' ) ) : ?> <div><?php dynamic_sidebar( 'header-widget' ); ?> </div><?php endif; ?> <div id="custom_inline"><?php if ( is_active_sidebar( 'header-widget2' ) ) : ?> <div><?php dynamic_sidebar( 'header-widget2' ); ?></div> <?php endif; ?> <?php if ( is_active_sidebar( 'header-widget3' ) ) : ?> <div><?php dynamic_sidebar( 'header-widget3' ); ?></div> <?php endif; ?> <?php if ( is_active_sidebar( 'header-widget4' ) ) : ?> <div><?php dynamic_sidebar( 'header-widget4' ); ?></div> <?php endif; ?></div>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘custom widget alignment twenty eleven’ is closed to new replies.