Header image being repeated
-
I am new to wordpress but have exhausted all other options except Stackexchange, so I’m hoping someone has some insight.
I have taken over maintenance on an old wordpress page, and I’m not exactly sure what has gone wrong where. I am trying to update the plugins, themes and core wordpress files and am running into a very specific issue with the header. I have gotten everything working properly except for the header image.
The Theme is a child theme of Genesis. I updated it from 1.9.1 to 2.0.1 and now my header image shows up in two places as shown in this image: <img src=”http://www.idealbrandon.com/innovanet.png”>
Using Chrome Dev Tools, i found that the image in question is being applied as a background to the #header element, and it is being output from somewhere as a style tag inside of the tag. Before I updated the theme, the tag being output was:
<style type=”text/css”>#header { background: url(http://192.185.88.253/~innovane/wp-content/uploads/2013/01/logo-1541.jpg) no-repeat; }#title a, #title a:hover, #description { color: #333333; }</style></head>and now it is:
<style type=”text/css”>#header { background: url(http://localhost:8888/Active/Innovanet/dev/new/wp-content/uploads/2013/01/logo-15411.jpg) no-repeat !important; }</style>
Obviously this is happening because of the !important tag, but I have no clue where I can edit this to remove the !important tag.
So my question is what file / function is outputting the head tags so I can edit this line out?
The topic ‘Header image being repeated’ is closed to new replies.