-
The header image occupies the whole width of the screen. And the screens these days are very wide. Is it possible to make it less wide? |
Beta Was this translation helpful? Give feedback.
Answered by
mmistakes
Aug 31, 2020
Replies: 2 comments
-
No and yes. You could take |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mmistakes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No and yes.
The headers are designed to expand to fill the width of their parent.
If you want to alter that then you need to be comfortable with CSS and restyle them to not do that.
You could take
.page__hero
, give it amax-width
and then center it withmargin-left: auto;
andmargin-right: auto;
, similiar to what is done with the#main
content container.