• Resolved everintransit

    (@everintransit)


    Hello, I used this plugin to hide the title on this page that I’m testing. I want to start the content space with this black and white image at the top, as shown: http://hilltron.com/test-page/

    The plugin hides the page title properly, but I can’t figure out how to reduce the size of the space from the bottom border of the navigation bar to the black/white image. I want to reduce the size (or eliminate) space. I can’t figure out where the code is that will allow me to modify this.

    Thanks for your help!

    http://wordpress.org/plugins/hide-title/

Viewing 2 replies - 1 through 2 (of 2 total)
  • scott.dojodigital

    (@scottdojodigitalcom)

    It looks like your theme is adding a margin to the header class:

    .entry-header {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem; /*<<<-this is an error buy the way */
    }

    Change it to:

    .entry-header {
    margin-bottom: 0;
    }

    Then add the margin to your header instead for where you are showing it:

    h1.entry-title {
    margin-bottom: 24px;
    }

    Thread Starter everintransit

    (@everintransit)

    Thanks, that helped!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to reduce the size of the space left by hidden title’ is closed to new replies.