Hi Beth,
I’m happy to see your 404 issue is resolved. We were also able to come up with a bit of code that should center the site title in your theme. There are two parts to this code snippet, let’s first add the CSS.
Open your Custom JS & CSS editor Appearance > Customize > Advanced > Custom JS & CSS and add this bit of CSS to the Custom Theme CSS section:
.boldgrid-css{ background: white; }
.site-title, .site-description {
text-align: center;
}
After adding your CSS scroll down to the Custom Theme JS section and add the jQuery below to modify the Bootstrap logic:
jQuery('div.col-md-6.header-6').addClass('col-md-12').removeClass('col-md-6');
jQuery('div.col-md-6.header-7').remove();
Be sure to “Publish” your changes after adding your code.
I really hope this helps! Please let us know if you have any other questions.