narrower header 'menu bar'

  • Unknown's avatar

    Hi, i would like to put the title of the website ‘journals of the world’ to the right of the logo rather than underneath it, and also would like to make the header smaller (narrower).

    thank you

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello,

    With the way that the Logo and title are set up in your site, there isn’t a good way to move the Title to the right of the logo with CSS.

    Making the header smaller is also a little bit tricky, with all of the things that are currently in it. You can take of the top and bottom padding, and that will make it a little bit smaller. To do that add this text to your CSS Customization page.

    .site-header{
    padding-top: 0px;
    padding-bottom: 0px;
    }

    Hope this helps, let me know if you have any questions.

  • Unknown's avatar

    thanks it worked! would be cool to move the title but thats fine, could you help out with my contact form,
    i would like to centralise the 3 boxes, and make the boarders a bit thicker for the boxes where you fill the info in, and also centralise the ‘submit’ button?

    thank you!

  • Unknown's avatar

    hi i managed to move the title, purely through guess work as i have no idea how to use CSS but managed to do it, just wondering if now i can make the header narrower, and also have everything in the header all aligned?

    thank you!

  • Unknown's avatar

    Hi, on your contact form, give this a try and see if this gets you what you are looking for.

    .contact-form {
        text-align: center;
    }
  • Unknown's avatar

    On the top header area alignment, try the following. I’ve used a Media Query to limit this to 961px and wider screens so that it doesn’t interfere with the touch device menu positioning at 960px and narrower.

    @media screen and (min-width: 961px) {
    #site-navigation {
        position: relative;
        top: -15px;
    }
    }
  • Unknown's avatar

    thank you ! it worked great.

    is there anyway of making the header slightly narrower (pulling the bottom up a bit)

    thanks again.

  • Unknown's avatar

    Hi there,
    You can make the header narrower (vertically) by adding this CSS:

    @media only screen and (max-width: 1600px)
    .site-banner-media {
    padding-bottom: 400px;
    }

  • Unknown's avatar

    hi, didn’t seem to work but thank you!

  • Unknown's avatar

    Hi,
    Sorry the CSS above is to make the header “image” smaller.
    The Header (the one that contains your site logo, title and menu) will get narrower by adding this CSS:

    .site-header:before {
    background-color: #193441;
    height: 80%;
    }

    You can change the percentage to change the size.
    Hope this works.

  • Unknown's avatar

    @journalsoftheworld, I see you have added the above code and adjusted the height to 75%. I’m going to go ahead and mark this as resolved, but if you have further questions on this issue, feel free to post back here.

    @carladoria, many thanks for your help in the forums. It is greatly appreciated. :)

  • The topic ‘narrower header 'menu bar'’ is closed to new replies.