• Hi,

    Emphasize is an amazing theme. I love the ease with which I can change colors. I was thinking of changing the position of the Logo from center i.e. above Menu to left side and inline with the menu. I can save a lot of space if that happens.

    Is it possible?
    Thanks in advance,
    Megan

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Thanks Megan ??

    It is possible, but to make that kind of change, you will definitely need to create a child theme and then modify the header.php file. I could show you what would be needed to achieve that result because you will need to add a div container around the logo and nav containers, then apply some classes to both of those.

    Please be aware if you create a child theme and activate it, WP will see it as a new theme activation, therefore, any options you already set from the customizer will have to be redone.

    Thread Starter Megan.ons

    (@meganons)

    Thanks for the reply Shaped Pixels,

    What do I have to do for this?

    Theme Author Shaped Pixels

    (@shaped-pixels)

    For a child theme, refer to the WP Codex: Child Theme

    Then you will need to copy the header.php file into your child theme.

    In your stylesheet, add this:

    @media (min-width: 783px)
    .primary-navigation ul.nav-menu {
        margin-top: 20px;
    }

    In your header.php file, look for a line of code that begins like:

    <div class="header-bg" style="background-color:

    …add a class “row” to it like this:

    <div class="header-bg row" style="background-color:

    Then look for this line:

    <div class="site-branding">

    …and change it to this:

    <div class="site-branding col-lg-5">

    Then look for this:

    <nav id="site-navigation" class="site-navigation primary-navigation" role="navigation">

    …and change it to this:

    <nav id=”site-navigation” class=”col-lg-7 site-navigation primary-navigation” role=”navigation”>

    Thread Starter Megan.ons

    (@meganons)

    Hi Shaped Pixel,

    I will try work this out and get back to you.

    Thanks heaps,
    Megan

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change Logo position to left of Menu’ is closed to new replies.