Viewing 3 replies - 1 through 3 (of 3 total)
  • Since the text that would have been in the page header area has been removed, you could hide that area with CSS. You could also remove the padding on the content area. Try this code in a custom CSS plugin or your theme’s custom CSS option, if one exists:

    .page_head {
    	display: none;
    }
    
    .single_post {
    	padding-top: 0;
    	padding-bottom: 0;
    }
    Thread Starter modochan

    (@modochan)

    Thank you stephencottontail! That did not work when I plugged it into the custom code area in Optimizer.

    My issue is finding a way to reduce the padding above the content without it becoming too squished in the mobile view.

    Thread Starter modochan

    (@modochan)

    Gasp! Nevermind, I plugged in your code in a different way and it worked! Thanks so much!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove space below header, above content’ is closed to new replies.