Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Is the 900 pixel width on your header intentional?
Yeah, that is just how I like it. Should it be different you think?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You can center the header image within that 900 pixel width, is that what you’re asking for? It’ll look like this http://snag.gy/WxJKI.jpg
#header {
margin: 0 auto;
}
figure {
text-align: center;
}
figure img {
float: none;
}
First you center your header (including menu). You then set the position of the image centered but for this unset floating left.
This won’t be responsive however…
You can try to set your header’s width to 100% to be responsive:
#header {
width: 100%;
}
and although I am not sure:
#header {
max-width: 900px;
}
You should try it at least. It will look like Andrew proposed.