Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have added a header image to my site with:

#header_area {
    background: url('my_header_image.com');
    background-repeat:no-repeat;
    background-position: top center;
}

My site is responsive except the Header.

Is there a way to make my header responsive?

share|improve this question
Responsive design isn't really a WordPress issue ... – EAMann May 25 '12 at 22:57
What do you mean by "responsive"? To have a fluid width? – One Trick Pony May 25 '12 at 23:01

migrated from wordpress.stackexchange.com May 26 '12 at 0:05

2 Answers

up vote 1 down vote accepted

When making a background-image responsive, you can use the background-size property. In the case of the above code, so long as your #header_area element has an implicit width (or an explicit one set with media queries), you should be able to say:

#header_area {
    background: url('my_header_image.com');
    background-repeat:no-repeat;
    background-position: top center;
    background-size: 100%;
}
share|improve this answer
Thanks, this helped – Tim May 28 '12 at 13:47
#header{
    background:url(images/header1.png) #fff;
    background-repeat:no-repeat;
    background-position: top center;
    background-size: 100%;
}

I'm using that command on my css...but still don't work....my header still not responsive

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.