I just received this comment from Roy on my post about Genesis Header Images:
Do you know if this works for the Amped Child Theme?
I am trying to get a background image the length of the Nav Bar menu
Fair question because not all child themes include the same coding.
Amped is not mobile responsive at this stage and to be honest, i’ve never been asked a question before about this theme so it was time to activate it locally and take a look inside the files.
The easiest solution to solve Roy’s problem is this:
Add this code to the end of your child themes style.css file:
#header {
background: url(images/logo.png) left top no-repeat;
width: 960px;
height: 100px;
}
Then replace the default logo.png file in your child themes images folder with the new one which matches the same dimensions as the values in the code above. 960 x 100.
You’ll also need to make sure your Genesis > Theme Settings > Header settings are set to image logo.
If this isn’t exactly what you had in mind, ask me a question in the comments and i will be glad to help you.
Was This Tutorial Helpful?