Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25138

    Hi,

    Here is a link to my issue (image provided):

    http://www.helpwithstats.com/?page_id=222

    Essentially, in the enfold theme, how do I:

    1. Remove the top bar above the header

    2. Reduce the whitespace found across all pages between the menu and text

    3. Reduce the white space above and below the horizontal ruler.

    Is there is some css code that I can drop into the “Quick CSS” box to help with these modifications. For 2 and 3, I can do some trial and error with the code to find what is right.. just need some help with code :)

    Thanks!

    #125887

    Hi,

    1. Remove the top bar above the header

    Add this on your custom.css or Quick CSS

    #header_meta {
    display: none;
    }

    2. Reduce the whitespace found across all pages between the menu and text

    I’m not sure what whitespace you’re referring to since the link you gave almost have no content in it.

    .template-page.content.twelve.alpha.units {
    padding-top: 10px;
    }

    3. Reduce the white space above and below the horizontal ruler.

    You can use this

    .hr {
    height: 10px;
    margin: 10px;
    }

    Adjust the values.

    Regards,

    Ismael

    #125888

    Thanks!

    Worked perfectly!

    #125889

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How do I remove top header bar, and reduce the amount of white space?’ is closed to new replies.