Hi Isabelle,
I have taken a closer look and it appears that you have modified the _navbar.php:
<?php
// =============================================================================
// VIEWS/GLOBAL/_NAVBAR.PHP
// -----------------------------------------------------------------------------
// Outputs the navbar.
// =============================================================================
$navbar_position = x_get_navbar_positioning();
$logo_nav_layout = x_get_logo_navigation_layout();
$is_one_page_nav = x_is_one_page_navigation();
?>
<?php if ( ( $navbar_position == 'static-top' || $navbar_position == 'fixed-top' || $is_one_page_nav ) && $logo_nav_layout == 'stacked' ) : ?>
<div class="x-logobar">
<div class="x-logobar-inner">
<div class="x-container">
<?php x_get_view( 'global', '_brand' ); ?>
</div>
</div>
</div>
<!-- slider above masthead -->
<?php x_get_view( 'global', '_slider-above' ); ?>
<div class="x-navbar-wrap">
<div class="<?php x_navbar_class(); ?>">
<div class="x-navbar-inner">
<div class="x-container max width">
<?php x_get_view( 'global', '_nav', 'primary' ); ?>
</div>
</div>
</div>
</div>
<?php else : ?>
<div class="x-navbar-wrap">
<div class="<?php x_navbar_class(); ?>">
<div class="x-navbar-inner">
<div class="x-container max width">
<?php x_get_view( 'global', '_brand' ); ?>
<?php x_get_view( 'global', '_nav', 'primary' ); ?>
</div>
</div>
</div>
</div>
<?php endif; ?>
I want you to update it particularly the logo bar area. You need to set the maximum width of the container by adding max width
which was originally and should be present in the default code and attach an inline css style text-align: left;
to the logo bar container so that the logo will be position to the left side.
<div class="x-logobar" style="text-align: left;">
<div class="x-logobar-inner">
<div class="x-container max width">
<?php x_get_view( 'global', '_brand' ); ?>
</div>
</div>
</div>
Note: Please be advised that you will be responsible for maintaining any modifications that has been made in the child theme. Always double check your modifications after every theme updates.
By the way, I am seeing your name in the global block. I did not change anything in your block.
Kindly check your page now.