Hello everyone, I'm currently working on a website using two monitors - one with 1920x1080 resolution and the other with 1440x900 resolution. However, the website doesn't seem to fit properly on the 1440x900 screen. I've used percentage widths in my CSS, so I expected it to adjust accordingly. Can anyone help me figure out what I might be missing?
1920x1080 Screenshot https://i.sstatic.net/5NhTM.jpg
1440x900 Screenshot https://i.sstatic.net/fXAhD.jpg
I've utilized CSS grid to organize elements like the header and slideshow, while also implementing flexbox within those components.
Snippet of CSS Code:
body{
display: grid;
grid-template-rows: 60px repeat(4, 1fr);
}
.header {
width: 100%;
height: 60px;
display: flex;
background-color: #009eb3;
}
.inner_header {
width: 100%;
height: 100%;
display: flex;
position: relative;
justify-content: space-between;
margin-left: 3%;
margin-right: 3%;
}
EDIT: Here is the link to my jsfiddle (https://jsfiddle.net/tcwaypq4/4/). I wasn't aware of this site before, apologies for that. Also, I have made changes to my body display by switching it to flex.