Okay
  Public Ticket #547585
tighten white space around logo in header
Closed

Comments

  • Lauren started the conversation

    What is the best way to shrink the whitespace above and below the logo in the header? It's especially noticeable on the mobile site.


    thanks!

  •  291
    Paul replied

    Hi Lauren!

    You can use custom CSS to adjust that. Please try:

    #root-container {
        padding-top: 5px;
    }
    #logo {
        margin-bottom: 0;
    }
    #root-container #menu-wrapper {
        margin-top: 10px;
    }

    In case you would like to use custom CSS for other elements, I would recommend Developer Tools on Chrome or Firebug on Firefox to inspect the elements on the page. Then you can know which CSS selector to adjust.

    Cheers,
    Paul