• I’ve tried various css coding, but I can’t figure out how to move my primary navigation menu from the top of the page to below my header image. I’d also like to add a grey separation line between my content and sidebar and remove the “posted in” from appearing on the site. I use tags more internally to organize the site. Can anyone help?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Create a child theme

    Copy header.php from parent theme and paste into the child them
    go to lines 18-20 where it says

    <?php omega_do_atomic( 'before_header' ); // omega_before_header ?>
    <?php omega_do_atomic( 'header' ); // omega_header ?>
    <?php omega_do_atomic( 'after_header' ); // omega_after_header ?>

    change that to

    <?php omega_do_atomic( 'header' ); // omega_header ?>
    <?php omega_do_atomic( 'before_header' ); // omega_before_header ?>
    <?php omega_do_atomic( 'after_header' ); // omega_after_header ?>
    Thread Starter katestylpetite

    (@katestylpetite)

    Thanks! Do you know the code to add a separation bar between the body content and sidebar?

    THANK YOU @bravokeyl! I was also needing to know how to accomplish this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to move primary navigation menu to below header’ is closed to new replies.