Skip to content

Instantly share code, notes, and snippets.

@bennettscience
Created October 11, 2015 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bennettscience/35424c56cffe4c899e9d to your computer and use it in GitHub Desktop.
Save bennettscience/35424c56cffe4c899e9d to your computer and use it in GitHub Desktop.
/*
You need to fix some HTML first. Find <div class="header">, third tag within the body, and delete the 'style' attribute.
It's overriding some of the CSS, which causes some funk.
*/
/* find #header on line 1703 of index.html and delete: */
#header {
background-color: #222222;
}
/* find #header on line 1698 of index.html and change it to: */
#header {
background: url('http://i1320.photobucket.com/albums/u527/Mr_Brett_Clark/edlogobluebkgdheader_zps5qrnzajg.png') no-repeat center center;
background-position:cover;
margin-bottom:40px;
}
/* find #header on line 1646 of index.html and delete: */
#header {
background: #191d20;
}
/*
Find #header on line 272 of index.html and delete everything in that chunk:
You already have all of this defined above and spreading out the attributes
throughout the CSS can cause issues from conflicting rules.
*/
#header {
background: url(http://i1320.photobucket.com/albums/u527/Mr_Brett_Clark/edlogobluebkgdheader_zps5qrnzajg.png) no-repeat #57A4F1; */
margin-bottom: 40px!important;
background-size: 100%!important;
background-position: 50% 0px!important;
background-color: #50ABF1!important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment