Thanks again, set it to 45% and works like a charm, I can not even resize the browser to be much narrower and it keeps everything neatly within the bounds of the header.
I did discover two bugs. So I’m investigating if I maybe should do a fresh install and completely remake the website.. I couldn’t find an immediate solution to these issues.
Issue #1:
Empty meta options in the blog post page, see this image:
View post on imgur.com
Issue #2:
In blog post page I have one featured image that is now wider than the text, I do now know who or how this happened, but I like it. However, when changing the width of the text column (now set to 700px wide), it also immediately changes the featured image width to the same size.
Before touching the 700px setting:
View post on imgur.com
After setting it back to 700px:
View post on imgur.com
Maybe these are known issues, I really like the image content being wider than the text content as it allows for a visual hierarchy.
My site is currently running on a localhost for sandbox purposes. If you need to see any of the source code of the page, let me know.
It appears the image is originally placed in this div:
<div class="thumbnail">
<img src="https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-scaled.jpeg" class="attachment-full size-full wp-post-image" alt="You are currently viewing About: Pen Plotters" loading="lazy" itemprop="image" srcset="https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-scaled.jpeg 2560w, https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-scaled-600x389.jpeg 600w, https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-300x194.jpeg 300w, https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-1024x664.jpeg 1024w, https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-768x498.jpeg 768w, https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-1536x996.jpeg 1536w, https://localhost/marinusdebeernl1/wp-content/uploads/2016/08/IMG_POCO_F1_20200502_105609-01-2048x1328.jpeg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" width="2560" height="1660">
</div>
I can see that changing the content width to 700px again only fits this image into a less wide space, but the div itself is not affected. I can’t pinpoint exactly where this change happens.
I did try using this snipper from Amit Singh:
.single .thumbnail img {
display: flex;
margin: 0 auto;
width: 60%;
}
And tried setting the width to 120%, but of course, this didn’t work haha.
Thanks for your time, I hope my questions also help other people to solve problems.