Hi Sarah,
The position of the menu is dictated by the theme, so to move it into a different position you have a few options.
1. Find a theme that outputs the menu where you want it to by default
2. Use a header builder type plugin (e.g. the one in elementor pro) to build your own header and position the menu where you want it to be
3. Edit your theme and move the position of the menu. This guide may help with that:
https://www.megamenu.com/documentation/manual-php
Regards,
Tom
Thread Starter
limeat
(@limeat)
Hi Tom
Many thanks! I did everything listed in that guide that you gave me the link to, did everything stated, see below.
However, that file is now write-only and the WordPress help team say that the permissions can’t be changed. I was shocked, but guess they have to safeguard against people making changes for no reason, like Apple (annoyingly) did with Disk Utility.
My support ticket was answered, and help given, but the tabs are still not across the very top as illustrated at:
https://www.megamenu.com/
I was hoping to have all social media links, links to important pages, and the Google Translate all in on bar of tabs. I’m not wanting drop down menus as most people in my intended market segment would struggle with them as I do myself.
I would have thought that WordPress would have had a facility that automatically adds tabs, but allows them to be removed easily.
Thanks again.
Sarah
<?php
/**
* Displays header site branding
*
* @package WordPress
* @subpackage Barnsbury
* @since 1.0.0
*/
?>
<?php if ( has_custom_logo() ) : ?>
<div class=”site-logo”><?php the_custom_logo(); ?></div>
<?php endif; ?>
<?php $blog_info = get_bloginfo( ‘name’ ); ?>
<?php if ( ! empty( $blog_info ) ) : ?>
<?php if ( is_front_page() && is_home() ) : ?>
<h1 class=”site-title”>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
<?php else : ?>
<p class=”site-title”>” rel=”home”><?php bloginfo( ‘name’ ); ?></p>
<?php endif; ?>
<?php endif; ?>
<—comment—>Theme header start</—comment—>
<?php wp_nav_menu( array( ‘theme_location’ => ‘max_mega_menu_1’ ) ); ?>
<—comment—>Theme header end</—comment—>
<?php
$description = get_bloginfo( ‘description’, ‘display’ );
if ( $description || is_customize_preview() ) :
?>
<p class=”site-description”>
<?php echo $description; ?>
</p>
<?php endif; ?>
Thread Starter
limeat
(@limeat)
Tom,
Would I be able to create the amended file in Notepad, then use FileZila to upload it, or would the permissions still prevent that?
Thanks again Tom.
Sarah
Hi Sarah,
I see Trevor responded to you a couple of hours ago. Please get back to us on that ticket once you see it.
Regards,
Tom