Hey @fatcow, as I understand, you want to fit the content + your image on the screen at the same time? With the current setup (vertical) and the sizes of your tags, it’s not physically possible. You have 2 solutions here:
Make everything smaller and make a parent Div that holds everything inside “height: 100vh”
Switch your layout to be horizontal (content on the left, image on the right) with display: flex. And then, on mobile and smaller screens that can’t fit these side by side, you would switch to a vertical layout.
I definitely suggest approach number 2 since it’s easier to achieve, it’s standard layout in web design, and you are displaying every relevant information to the user on the screen simultaneously.
Hope this helps, let me know if you need any assistance!
@Lazarevic Thank you for your swift reply.
I tried both solutions but didn’t get the intended results. the hero image still sits above the paragraph and cta.
@ShorePatrol Thanks for your input. I tried using the image as the background, the challenge I faced was getting the image below the heading copy and cta.
It took that space and obscured the text we have.