Topic Resolution: Resolved
  • Closed
  • Paul Roeller
    Spectator
    June 24, 2015 at 7:54 am #18468

    I have a horizontal band of white space (similar to what is on the forum pages) between the header and the page body, how do I get rid of that space so my page image will go up to the menu border?

    Imran
    Spectator
    Posts: 402
    June 24, 2015 at 10:29 am #18470

    Hi there,

    Thanks for writing in, would you mind providing your website URL so I can take a look into your setup and provide you with a tailored answer. However, you can try this code under Appearance > Theme Options > Custom CSS:

    .content {
    padding-top: none;
    }

    Thanks.

    Paul Roeller
    Spectator
    Posts: 3
    June 24, 2015 at 3:55 pm #18479

    Thank you, I will try your suggestion. My site URL is:

    http://www.litigationreadinessgroup.net/

    Paul Roeller
    Spectator
    Posts: 3
    June 24, 2015 at 4:01 pm #18480

    I applied the CSS and it has not resolved the issue. I have a full page image on my home page which I would like to go up to the header border however it does not and I cannot find the setting to remove the white horizontal space. I believe there is this white space on both the top and bottom of the page content. Thank you for your help.

    Denzel Chia
    Moderator
    Posts: 2656
    June 24, 2015 at 5:01 pm #18485

    Hi,

    Please use the following codes in Theme Options -> Custom CSS

    #main {
    padding: 0 !important;
    }

    Screenshot of result. http://prntscr.com/7ktsj7

    Thanks!
    Denzel

    Paul Roeller
    Spectator
    Posts: 3
    June 24, 2015 at 5:52 pm #18490

    Thank you, that worked PERFECT! Is there a way to center the logo in the header vertically?

    Denzel Chia
    Moderator
    Posts: 2656
    June 25, 2015 at 5:40 am #18502

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .logo {
    float: none !important;
    margin: 20px auto !important;
    max-width: 500px;
    width: 100%;
    }

    Please note that the logo has to remain in between the top bar and the menu, so that it does not overlap other items when you view it in mobile.

    Result. http://prntscr.com/7l1wr4

    Thanks!
    Denzel