@Matt: I see that you have edited the core theme style.css file. You shouldn’t edit that. You shouldn’t edit/add any files inside ‘adventurous-pro’ directory. As all the files will be overwritten when you update the theme.
Also I see the issue with the css that you have changes in style.css file. Go to style.css and remove the height in the following css:
#footer-sidebar {
background-color: #004b99;
height: 125px;
}
#site-generator {
background-color: #004b99;
height: 50px;
}
It should be simple as:
#footer-sidebar {
background-color: #004b99;
}
#site-generator {
background-color: #004b99;
}
Note: Please reset all the style.css with the original file and add all your edit css in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme style.css http://catchthemes.com/blog/create-child-theme-wordpress/