Hi,
Try adding this CSS:
#page-wrapper {
margin-top: 0px;
}
#page-wrapper #page-content {
margin-bottom: 0px;
}
If that doesn’t work you may need to add !important, like so:
#page-wrapper {
margin-top: 0px !important;
}
#page-wrapper #page-content {
margin-bottom: 0px !important;
}