Hi, so i’ve been working on this website from quite some time and i’m just figuring this out. Basiclly when i put the width from 1700 to 1900 it moves all the content sort off up. See pictures
Hey Renzo, your readonly designer link and published site link are both missing- you’ll need both for anyone to help you with this.
and the published site right is Profuze.nl
I personally think it 's the problem with the hero div, because i’ve sortoff pulled it down to get the purple and yellow picture on top of the body. Which is did for all my pages on the website
The issue likely stems from CSS properties like margin
, padding
, position
, or media queries affecting the layout at specific widths (1700-1900px). Check for any @media
rules or hardcoded values in your CSS causing vertical shifts. Use your browser’s developer tools to inspect the elements and look for dynamic changes in alignment, Flexbox/Grid properties (align-items
, justify-content
), or viewport-based units (vh
). Ensure parent containers have proper dimensions and avoid conflicting styles like overflow: hidden
or absolute
positioning. Debug step-by-step by resizing the viewport and adjusting styles in the developer tools to identify and fix the problem.