Help finding broken code that's messing up headers

Hello - this is our site. Could you please help us find the culprit for what made the homepage header bust?

Thank you!

Hello @INcroatia,

Thanks for writing in! In your Pro > Theme Options > CSS, you have added the following broken CSS:

 .tco-subscribe-form input[type="email"] {
     height: 40px;
     @media(max-width: 1000px) 
}
#sec {
     background-image:url ("https://getboober.com/wp-content/uploads/2017/03/boober-breastfeeding-help-support-new-moms-lacatation-consultant-la-leche-league-new-york-city-park-slope-brooklyn-background-homepage.png");
     background-repeat:no-repeat;
     overflow:hidden;
    /*background-attachment:fixed;
    */
     background-position:left;
     background-repeat:no-repeat;
     background-size: 130%;
     z-index: 1;
}

Your code should be:

 .tco-subscribe-form input[type="email"] {
     height: 40px;
}
#sec {
     background-image: url("https://getboober.com/wp-content/uploads/2017/03/boober-breastfeeding-help-support-new-moms-lacatation-consultant-la-leche-league-new-york-city-park-slope-brooklyn-background-homepage.png");
     background-repeat:no-repeat;
     overflow:hidden;
    /* background-attachment:fixed; */
     background-position:left;
     background-repeat:no-repeat;
     background-size: 130%;
     z-index: 1;
}

Please update the code.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.