OMG! Just as expected…I was thinking way too complex.
Because several ways can lead to success I decided to go with your code snippet and give the header background a color by code. I wanted to have the same for the footer so I just went on.
And then all of a sudden my fault became obvious…because not the entire footer area (width) was colored now. Making a small adjustment to your code solved my issue.
Instead of .site-header I am directing the class .main-navigation now and I end up with the desired result: A header and a footer being lined up with the main body. ??
/* CSS For Colored Header Bar */
.main-navigation {
background: #82ddcd;
}
/* CSS FOR COLORED CREDIT FOOTER */
.site-info {
background: #82ddcd;
}
//replace color code with any color hex code you want
This way I hope to avoid having issues in responsive mode.
Thank you for your fast replies and support, Mikey! You’ve been a big help pointing me to the right direction!