You were correct, the issue was not with the theme. It was an improperly written .htaccess file.
I am now having an issue with logo on http://www.insidepolk.org/inside
The temporary logo I am using is 600×140
I adjusted the height at Enfold Options > Header > Header size > Custom pixels to 150
I used the following code to change the logo display size, but it is still showing small.
/* Custom size logo
Update the width in the below code and height from the Enfold > Header > Header size */
#top .logo ,
#top .logo a {
width: 650px;
}
@media only screen and (max-width: 767px) {
#top .logo ,
#top .logo a {
max-width: 60% !important;
width: 60% !important;
height: auto;
}}
How do I get the log to display the size of the image I am using?