09-20-2018, 03:47 AM
So I've found a work-around that works for me, and figured I'd share in case anyone would like this in future.
The fix I'm using doesn't actually affix the footer to the bottom of the page, but instead gives a minimum height to the page wrapper.
in the file:
/users/css/sb-admin.css
changed
#page-wrapper {
width: 100%;
background-color: #fff;
}
to
#page-wrapper {
width: 100%;
min-height: 800px;
background-color: #fff;
}
This worked for me, and I thought I'd share.
The fix I'm using doesn't actually affix the footer to the bottom of the page, but instead gives a minimum height to the page wrapper.
in the file:
/users/css/sb-admin.css
changed
#page-wrapper {
width: 100%;
background-color: #fff;
}
to
#page-wrapper {
width: 100%;
min-height: 800px;
background-color: #fff;
}
This worked for me, and I thought I'd share.