Hi cloudontap
Thanks for giving Ultra a try. (I’ve got an update on the way soon with lots of little fixes and additions.)
Ultra isn’t using a sticky footer, rather, the background color of the site body matches the footer background color. This means, that on a page without much content, the footer will appear quite large. That’s not necessarily the problem here, but worth noting.
The footer widgets are the ones with top and bottom padding, vs the footer itself, I did this to help with edge cases, like when there are no widgets present. To edit, please use a plugin like Simple Custom CSS or if you make use of Jetpack, then activate Jetpack Custom CSS and insert:
Simple Custom CSS: https://wordpress.org/plugins/simple-custom-css/
/* Footer widget padding */
#colophon .widget {
padding: 2.67857em 0 3.57143em;
}
Edit as required. You’re welcome to replace the em measurement with pixels.
Removing the copyright/bottom bar sounds like a good idea for a theme setting, for now, let’s hotfix with the following:
/* Hide the bottom bar */
.site-footer .bottom-bar { display: none; }
To restore your setup we ideally need to restore the edited files. All WordPress themes completely overwrite themselves when updating so any changes made via Appearance > Editor without using a child theme unfortunately aren’t upgrade safe.
One way to restore theme files would be to switch to another theme, delete Ultra and re-install it. Alternatively, if you let me know what’s been edited, I could send through the contents of those files.