How to change header image width to full page
-
Hi,
I’ve been trawling through numerous threads on this topic and none of the CSS codes have helped me change the width of the header image. I’m using the Rosalie theme and I can’t manage to make the header image stretch right across the page. the last code I tried that didn’t work is:
@media screen and (max-width: 1356px) {
.header-image-wrap {
width: 1356px;
}
}The blog I need help with is http://www.intermedieval.com
Or http://www.intermedieval.wordpress.comI’ve uploaded a dummy header for the time being to illustrate the issue.
thanks in advance for any help.
-
Hi there,
Please try using the CSS below. It should make the image full width on screens narrower than 1356px.
@media screen and (max-width: 1356px) { .image-header-flexible { padding-left: 0; padding-right: 0; width: 100%; } .image-header-flexible.container img { min-width: 100%; } }If the CSS doesn’t work, please keep it in the customizer so I can troubleshoot it further.
-
-
- The topic ‘How to change header image width to full page’ is closed to new replies.