Support » Fixing WordPress » Remove white space

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    modify your css:

    currently

    #pg-46-0, #pg-46-1, #pg-46-2, #pg-46-3, #pg-46-4, #pg-46-5, #pg-46-6, #pg-46-7, #pl-46 .panel-grid-cell .so-panel {
        margin-bottom: 30px;
    }

    change to

    #pg-46-0, #pg-46-1, #pg-46-2, #pg-46-3, #pg-46-4, #pg-46-5, #pg-46-6, #pg-46-7, #pl-46 .panel-grid-cell .so-panel {
        margin-bottom: 0;
    }

    Unfortunately, that CSS is inline, so I’m not sure you can override it with a CSS file.

    For help with the commercial theme Tesseract, please check with the developers at

    http://tyler.com/tesseract-theme/

    Hi frazerli28,
    You can override inline css, just inherit from the wrapper div.
    .entry-content #pl-46 #pg-46-7 {
    margin-bottom: 0;
    }

    This will reduce your white space gap.
    Put the code in style.css of your theme.
    Thanks

    The extra spacing is caused by the clearfix on #footer.col-full:after You can fix it with overflow:hidden on #footer.

    Thread Starter frazerli28

    (@frazerli28)

    Thanks guys!

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