Sorry if this was addressed in another post - I didn't see anything related.
Is there are was to put the logo to the left (or right) of the menu - like this same site, in stead of on top?
Thanks
Sorry if this was addressed in another post - I didn't see anything related.
Is there are was to put the logo to the left (or right) of the menu - like this same site, in stead of on top?
Thanks
Hey,
open up header.php and delete following code:
echo avia_logo();
Then replace:
$args = array('fallback_cb' => 'avia_fallback_menu', 'max_columns'=>4);
wp_nav_menu($args);
?>
with:
$args = array('fallback_cb' => 'avia_fallback_menu', 'max_columns'=>4);
wp_nav_menu($args);
echo avia_logo();
?>
Maybe you need to adjust the sytling a bit.
Thanks you so much
Glad that I could help you :)
You must log in to post.