Customizing header size
-
I am trying to change the size of the header image on my blog. The current theme I am using only allows for 690px by 185px. My header is much bigger in height. Can anyone help me with the CSS coding for this problem? With my research I came up with the following:
}
#header-image {
height: 350px;
margin: -40px auto 60px;
width: 690px;Please?! I am desperate!
The blog I need help with is: (visible only to logged in users)
-
Delete the code you have and use the following.
#header { background: url("URL OF HEADER IMAGE") no-repeat scroll 0 0 transparent !important; height: 350px; }You cannot use the header uploader after you change the side of a header via CSS. You then have to put the header image declaration directly into the CSS. Upload your image to the media library, get the URL of that image and then replace URL OF HEADER IMAGE in the background declaration above (between the quote marks).
-
-
- The topic ‘Customizing header size’ is closed to new replies.