• Hey I removed the header from this page using css

    .page-id-8428 header {
        display: none;
    }

    But there’s still some of the header showing at the top (its the red part about a centimeter and a half, I tried to use this css to fix it but can’t seem to get it to work.

    body.page-id-8428 #content .main .pageclass {
        padding: 0px 15px 20px;
    }

    Any guidance would be appreciated? I probably have the wrong class.

Viewing 4 replies - 1 through 4 (of 4 total)
  • .page-id-8428 #Subheader {
        display: none;
    }

    Hope this helps.

    • This reply was modified 8 years, 3 months ago by ThemeSumo.

    What you have showing at the top is the “Subheader” div
    <div id="Subheader">

    Add your display:none CSS code to that as well to make it disappear.

    I should mention – The code you display above isn’t found … just the code to hide the main header:

    .page-id-8428 header {
        display: none;
    }

    Just change that to

    .page-id-8428 header,
    .page-id-8428 #Subheader {
        display: none;
    }
    Thread Starter adgsound

    (@adgsound)

    Thank you you’re right. Much blessings to you my friend!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Space From Top’ is closed to new replies.