Community Forums › Forums › Archived Forums › Design Tips and Tricks › Header not showing up
- This topic has 6 replies, 5 voices, and was last updated 13 years ago by
miami2012.
-
AuthorPosts
-
August 7, 2013 at 3:26 pm #54715
alliechynna
MemberI used the header uploaded to upload my header it works fine in safari but when I go into firefox nothing shows.
Does anyone know how I can fix thisAugust 7, 2013 at 7:15 pm #54777Spanka
MemberHey Chynna,
It's because you have 2 background image declarations in your CSS.
This one is ok - it works and it is in your style.css (where it should be!)
#header { background: url("images/header.png") repeat scroll 0 0 transparent; margin: 0 auto; min-height: 250px; width: 100%; }This one is bad - it doesn't work and is flagged with !important, so it is overriding (properly) the "right" one in firefox
#header { background: url("/wp-content/uploads/2013/08/header2.png") no-repeat scroll 0 0 transparent !important; }This one that is bad points to an image that doesn't exist AND it is in the html of your theme - just inside the closing </head> tag. You need to find what writes this and remove it!
Also - unless you want your logo repeating across the top, you might want to change that first bit of css to include no-repeat....
#header { background: url("images/header.png") no-repeat scroll 0 0 transparent; margin: 0 auto; min-height: 250px; width: 100%; }or if you wanted it right aligned...
#header { url("images/header.png") no-repeat scroll 100% 0 transparent margin: 0 auto; min-height: 250px; width: 100%; }August 7, 2013 at 8:48 pm #54794miami2012
Membergenesis 2.0 is overwriting your header css with this
http://alliechynna.com/:67
#header {
background: url(http://alliechynna.com/wp-content/uploads/2013/08/header2.png) no-repeat !important;
}
is doing it to my websites too i had to go back to genesis 1.9August 7, 2013 at 9:00 pm #54799DoNotFaint
MemberThis happened to me, too. How do I go back to 1.9?
August 7, 2013 at 9:26 pm #54810IanP
ParticipantI had to FTP to my host and uploaded a backup of my Genesis folder. The location to upload your Genesis folder backup is: FTP is: /public_html/*yourname*/wp-content/themes/genesis. This overwrite the content of the Genesis folder that contained the newly updated Genesis 2.0.
or
Use a copy of the ‘genesis.1.9.1.zip that you may have downloaded and upload it via FTP.
August 8, 2013 at 6:00 am #54855alliechynna
MemberThanks just delete the image and it showed up
August 8, 2013 at 5:43 pm #55136miami2012
Memberi deleted this out of my decor theme functions.php
/** Add support for custom header */
add_theme_support( 'genesis-custom-header', array( 'width' => 1140, 'height' => 140 ) );updated to genesis 2.0 and that did the trick with my header issue
genesis 2 is perfect now
thanks -
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.