Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I don’t think the problem is with your header image. I think your content is not centred: https://imgur.com/a/TLwf7Zs
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In the “Additional CSS” section of the dashboard add this:
.site-content .container {
width: auto;
}
https://codex.ww.wp.xz.cn/CSS#Custom_CSS_in_WordPress
Thank you so so so much! I have been trying to solve it for sooo long! 🙂
Just one thing more:
can you tell me how to adjust the menu as well because I would like to align it with the other elements of the page
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
The navigation menu is a bit tricky because it technically is made up of 2 columns. One column is empty space that is positioned to the left of the menu, whereas the other column is the menu itself.
Try removing the column of empty space and see how that works for you. Once that’s done, we can help with aligning the menu to the right if you want.
ok, unfortunately I don’t know how to remove the column of empty space
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
For now, try adding this CSS:
.site-header .container {
width: auto;
}
.site-header .col-6:first-child {
display: none;
}
.site-header .col-6 {
float: right;
width: 100%;
}
It worked perfectly!! Thank you so much!!