• Hey,

    I want to completely remove that white space between my whole header section and the rest of the page below..
    I’m using the latest Aaron Theme.
    I’ve managed to remove the page titles using this custom CSS:

    .entry-title {
    display: none;
    }

    But please, how can I completely remove this white space?
    I want to try out parallax scrolling and that space is in the way..

    Thx!

Viewing 1 replies (of 1 total)
  • In your child style.css file, put the following:

    /* ~~~ REDUCE WHITESPACE BETWEEN HEADER AND PAGE CONTENT  ~~~~~~~~~~~~ */
    
    .error404 .site-content,
    .single .site-content,
    .search .site-content,
    .page .site-content,
    .archive .site-content{
    	margin-top: 1em;
    	padding: 0;
    }
    
    .home .site-content{
    	margin-top: 1em;
    	padding: 0;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Space Between Header and Page Content’ is closed to new replies.