Hi within your site, specifically the header you have a style that you put in there but never closed it, so between <head></head> very last few lines… you have;
<style type="text/css">.site-title,
.site-title a {
color:#ffffff;
}
#action, #action a { color:#ffffff; }
#action, #action a { background:#000000; }
.featured-post h2,
.featured-headline,
.comments-title,
.comment-reply-title,
.testimonial-entry-title,
.jetpack-testimonial .entry-title,
.page-title,
.entry-title,
.entry-title a,
.main-navigation,
.widget-title,
.widgettitle,
.page-links,
.site-info,
.site-description,
.site-title,
.site-title a {
font-family: 'Montserrat', sans-serif;
}
.comment-metadata{
margin-left:70px;
display:block;
margin-top:-25px;
}
.site-header {
background: #4777a6 url(http://ottawa.hackinghealth.io/wp-content/uploads/sites/28/2015/09/cropped-slide1-dark.jpg) no-repeat center center;
background-size: cover;
}
as you can see at the end it isn’t closed </style>, if you add that and make it like so;
<style type="text/css">.site-title,
.site-title a {
color:#ffffff;
}
#action, #action a { color:#ffffff; }
#action, #action a { background:#000000; }
.featured-post h2,
.featured-headline,
.comments-title,
.comment-reply-title,
.testimonial-entry-title,
.jetpack-testimonial .entry-title,
.page-title,
.entry-title,
.entry-title a,
.main-navigation,
.widget-title,
.widgettitle,
.page-links,
.site-info,
.site-description,
.site-title,
.site-title a {
font-family: 'Montserrat', sans-serif;
}
.comment-metadata{
margin-left:70px;
display:block;
margin-top:-25px;
}
.site-header {
background: #4777a6 url(http://ottawa.hackinghealth.io/wp-content/uploads/sites/28/2015/09/cropped-slide1-dark.jpg) no-repeat center center;
background-size: cover;
}
</style>
it will all work.
Hope that solves it, let us know.
Thank you.