• Resolved daddybo

    (@daddybo)


    What css can I change to reduce space above and below the page or post title? I use Custom CSS Manager to make changes for css.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Above and below the title itself?

    For the headings like post titles, this is the default margins that you can adjust for:

    .top-featured-left .entry-title,
    .top-featured-right .entry-title {
        margin: 5px 0;
    }

    Then for all headings like h1, h2, h3, etc, you can do it with this:

    h1, h2, h3, h4, h5, h6 {
        margin: 12px 0;
    }

    The margins you see above are default margins in the theme.

    Thread Starter daddybo

    (@daddybo)

    Okay I understand that – thank you for the quick reply. I like this theme a lot. Is there an approach I can take to to change the spacing just under the navigation menu and around the page titles? I have client that asks I hide the title on a few pages, but also wants the content to start much closer to the menu. I use the Hide Title plugin to toggle the title off. Your suggestions?

    Theme Author Shaped Pixels

    (@shaped-pixels)

    First up, using the Hide Title plugin (or any plugin that can do that) is ideal, so good on that decision.

    Moving the content closer to the nav can be done with this CSS with regards to “pages” and the blog “posts”. The default padding and the feature top sidebar container is actually loaded in the page even when no widgets are published to it. I probably should have done it differently, but to adjust the padding (which will adjust the space between content and nav) would be:

    #feature-top-wrapper {
        padding: 32px 10px;
    }
    Thread Starter daddybo

    (@daddybo)

    That is resolving things nicely and works just fine.

    Thank you for your great support. I appreciate you.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    You’re very welcome ??

    Where is it possible to change the settings?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Reduce space above and below page title’ is closed to new replies.