Hi,
Re: https://origamimembstg.wpengine.com/member-login/
When logged in to this membership site, the header is added using this filter:
add_filter( 'generate_logo', function( $logo ) {
if ( is_user_logged_in() ) {
return 'PATH-TO-HEADER-IMAGE';
}
return $logo;
} );
I’d like to place a recent posts widget underneath the logged-in header, but when I do that in–Customize > Widgets > Header–the widget floats to the right and above the header, instead of centered and underneath under the header, like the language-switcher-widget on this site.
How can this widget be positioned underneath the header on the logged-in side of the site?
Here is a screenshot.
Thank you,
John