• Resolved Greenhouse CEL

    (@greenhouse-cel)


    Hi there,

    I was wondering if you could help me reduce the space between the header and the content, between the title (About Us) and the text and between the content and the footer.
    I’ve been doing experiments with padding but I can’t seem to figure it out.
    Thank you so much ??

    The blog I need help with is https://www.greenh.net.

Viewing 12 replies - 1 through 12 (of 12 total)
  • CypressWebs

    (@jmeyer2485)

    Top above About us:

    .singular.page .hentry {
        padding: 0px 0px 0px; <--- Adjust first 0px
    }

    Under About us:

    .entry-content, .entry-summary {
        padding: 0px 0px 0px;  <--- Adjust first 0px
    }

    Not sure if this what you mean but hope it helps

    Thread Starter Greenhouse CEL

    (@greenhouse-cel)

    Thank you for your help.
    I’m having trouble with cache in my site, so I can’t see if it helps yet.
    Thank you again

    CypressWebs

    (@jmeyer2485)

    Hard refresh your site with Ctrl + F5 or sometimes just F5 while on the page. This way it dumps the cache.

    Thread Starter Greenhouse CEL

    (@greenhouse-cel)

    Thanks.
    However, the code you gave me doesn’t seam to change anything :S

    CypressWebs

    (@jmeyer2485)

    Not sure why not it worked for me through FireBug.

    Are you using a child theme or a CSS Editor?

    anushoj

    (@anushoj)

    Hi,

    I have a similar problem, I am using a genesis child theme and want to change the increase the content width size.
    So I changed the below 2 and didn’t see any change.
    /* Site Containers
    ——————————————— */

    .site-inner,
    .wrap {
    margin: 0 auto;
    /* max-width: 1140px; */
    max-width: 1340px;

    }

    AND

    .content {
    float: right;
    /* width: 730px; */ /*Anu Comment*/
    width: 930px;

    Please HELP

    WPyogi

    (@wpyogi)

    @anushoj – CSS is theme specific and this is not your thread – please don’t hijack other people’s threads. You need to contact StudioPress for support – as these forums don’t support commercial themes.

    anushoj

    (@anushoj)

    ok, thanks

    Thread Starter Greenhouse CEL

    (@greenhouse-cel)

    I’m using a child theme.

    Thread Starter Greenhouse CEL

    (@greenhouse-cel)

    When I add

    .singular.page .hentry {
    padding: 0 0 0;
    }

    to my child theme style.css, it doesn’t change anything.
    When I use firebug, I can see that code twice in different lines. However, none of them has the 0 0 0 values.
    I can see that the second one has a 3.5em padding value and I think that’s what you want me to change, but I don’t know how.

    WPyogi

    (@wpyogi)

    Find this in your child theme style.css file (line 20) – and change the padding-bottom to zero:

    .entry-title {
        padding-bottom: 0;
        padding-top: 0;
    }

    Then ADD this:

    .entry-content, .entry-summary {
        padding: 1.625em 0 0;
    }

    And adjust that first number according to what you want.

    Thread Starter Greenhouse CEL

    (@greenhouse-cel)

    Ok.
    So I’m feeling pretty stupid right now.
    There’s a problem with my host cache tool, so I’m unable to see the changes for hours, which makes it very difficult to update.
    So your suggestions work like a charm (if I hold on long enough to see them take effect on the website ;))!
    Thank you so much and I’m sorry for all the trouble.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘How to reduce spacing between header and content?’ is closed to new replies.