• Resolved mikemesseroff

    (@mikemesseroff)


    How can I reduce the height of the page title area? There is too much space above and below the title text. Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author OptimizerWP

    (@layerthemes)

    @mikemesseroff Can you please share the page link where the issue is visible?

    Thanks

    Thread Starter mikemesseroff

    (@mikemesseroff)

    My website shows a Coming Soon page as it is currently being built. Please see a screenshot of the page title area here: https://dl.dropboxusercontent.com/u/75069376/Page%20Title%20extra%20padding.png

    Hey Mike,

    Since you’re not able to provide a link to your site, I am taking a guess here. Please try adding following custom CSS to your theme using Advanced CSS Editor:

    .aboutblock{
        padding:0px;
    }

    Adjust the padding accordingly. Hope it helps.

    Thread Starter mikemesseroff

    (@mikemesseroff)

    Hi Suyogya – Thank you for your help, but unfortunately that did not work (using the Advanced CSS Editor). I tried editing “/*About Block*/” in the CSS but that did not work either. Any other suggestions?

    Thanks again!

    Mike

    Hi Mike,

    There’s not much we can do without a link to the site, unfortunately ??
    I can only advise you to add the code with !important attribute and see if it makes any difference, so the final code should look like this:

    .aboutblock{
       padding: 0px!important;
    }

    Also, it is not recommended to make modifications to theme’s main stylesheet as they will be overwritten when the theme is updated. You can set-up a child theme instead ??
    Hope it helps.

    Theme Author OptimizerWP

    (@layerthemes)

    Hi mikemesseroff

    Insert this in Appearance -> Customize -> Miscellaneous -> Custom CSS

    .page_head .pagetitle_wrap{
        margin-top:.5em;
        margin-bottom:.5em;
    }
    
    .page_head {
        min-height: 50px;
    }

    Thanks

    Thread Starter mikemesseroff

    (@mikemesseroff)

    Fantastic. That worked great! Thanks so much.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Reduce height of page title area’ is closed to new replies.