I’d like to move the main menu to the sidebar, but leave the logo in the header. I’ve searched the forum and found nothing to indicate how it might be done. Can you suggest something?
Since I have the frontend of the site closed for maintenance, you have to log into the backend as admin, and then view the site. The credentials are below.
why don’t you use this demo settings here:
http://kriesi.at/themes/enfold-consulting/
set the div .logo to display none and put on all pages the logo on top of main
Hi!
Please let us know if Guenni way is working, else we have to provide a different solution.
Thanks a lot for your time and patience
Best regards,
Basilis
to put something via widget just after main container opens you can use this code here in child-theme functions.php file:
add_action( 'ava_after_main_container', 'enfold_customization_newlogo_widget_area' );
function enfold_customization_newlogo_widget_area() {
dynamic_sidebar( 'newlogo' );
}
and on dashboard / widget you than have to create a new widget area called: newlogo
than you can place your logo and backlink to landingpage to a text-widget in this new area
Not the most elegant way to accomplish this, but I did it by using display: none;
for the menu in the header, and adding a widget containing the main menu to the sidebar. If there’s another way, I’d like to know.
Thanks.