I noticed that after I uploaded my own logo to Theme Branding that the "Register Now" button at the top no longer floated directly across from the logo, but instead showed up on the right but below the logo, creating too much empty space under the menu before the content.
To fix, go to the template.css and find:
a.imageLogo,
a.imageLogo img {
display: block;
}
Add – float: left; so that the code looks like this:
a.imageLogo,
a.imageLogo img {
display: block;
float: left;
}
