• Hello!

    This forum has been really useful so far while building my site.

    I am struggling to move the header menu box to the right. It seems to be floating a bit to the right of the centre.

    How do I tell it to sit above the right sidebar?

    site is http://www.buymodafinilguide.com

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi,
    In the customizer, goto Header > Design and Layout and check against Social links in header (Leave the social links blank if you don’t want to display them). The Menu will move to the extreme right.

    go to your head.php file and find

    <h2 class="span7 inside site-description"></h2>

    just remove the span7 class will note the diference

    @remediosgraphic, that’s not how Czr works – it doesn’t use the traditional WP structure as it is object-oriented. Fixes need to use hooks written as functions – see the Snippets

    ok you are right, i already download the theme and if you go to
    \customizr\inc\parts\class-header-header_main.php
    line 487 change

    apply_filters( 'tc_tagline_class', 'span7' ),

    to
    apply_filters( 'tc_tagline_class', 'span1' ),

    this help a lot it will be more presentable, or then you can add a class there and manipulate the div with css

    You’re now encouraging editing core files, which again is a no-no in our opinion.

    @bmguide, did you try @menaka’s suggestion yet?

    if you inspect the code there is no social icons over there, and is not working

    To move the Hamburger menu:

    @media only screen and (max-width:1920px) {
    .navbar.resp {
        width: 65%; !important /* Adjust */
    }
    }

    You’ll need to add further @media at breakpoints from 980px upwards. For example, 1024px, 1200px, 1680px

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Move menu in header’ is closed to new replies.