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; ?>