• Hey,

    I’d like to know how to remove some whitespace at the top of the page – some of the margin space. Here’s a screenshot of what I want removed or reduced: https://imgur.com/a/3aDWg. I crudely circled the area in red, haha.

    Is there a way I can tweak this to my liking in the CSS editor for the site / appearance? I’m assuming there’s simple code I can alter in the CSS, which I hope is the case.

    Thanks in advance. Have a great day.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author TT Themes

    (@tomastoman)

    Hi,

    this custom CSS allows you to reduce it:

    #wrapper #wrapper-content #main-content {padding-top: 10px;}

    Best regards,
    Tomas Toman

    Thread Starter thefloodshark

    (@thefloodshark)

    thanks, great!

    One last question: how would I go about applying this to specific pages?

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    you can apply the specific page IDs:

    .page-id-1 #wrapper-content #main-content,
    .page-id-2 #wrapper-content #main-content,
    .page-id-3 #wrapper-content #main-content {
    padding-top: 10px !important;
    }

    Best regards,
    Tomas Toman

    Thread Starter thefloodshark

    (@thefloodshark)

    Thanks, you’re the best.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to Remove Whitespace from the Margin at the Top of Pages?’ is closed to new replies.