Hello There,
Thanks for sending out the screenshot. This issue happened because you have inserted a custom css for the header which affects the footer also. You have this:
.x-bar-container {
background-image: url(https://thatsmytech.com/wp-content/uploads/2017/09/Gainesville-Computer-Repair.png);
background-color: rgba(0,0,0,0.2);
background-repeat: no-repeat;
background-position: right bottom;
margin-right: auto;
margin-left: 0px;
padding-left: 0px;
padding-bottom: auto;
background-attachment: fixed;
}
You will need to update it and make use of this code instead which would target that this will only be applied to the header.
.x-masthead .x-bar-container {
background-image: url(https://thatsmytech.com/wp-content/uploads/2017/09/Gainesville-Computer-Repair.png);
background-color: rgba(0,0,0,0.2);
background-repeat: no-repeat;
background-position: right bottom;
margin-right: auto;
margin-left: 0px;
padding-left: 0px;
padding-bottom: auto;
background-attachment: fixed;
}
If you need anything else we can help you with, please let us know.