I must say I was absolutely terrified to get feedback on my first EVER project (Tribute Page) but after getting over my own insecurities I am SO grateful for the wealth of knowledge and understanding I gained from going through that process, and so I welcome your constructive criticism.
@Roma Please would you be so kind as to provide your feedback here.
Also, my last two media queries are a bit of a mess as I was trying to make it responsive for iPad (as per comment above), I have been reading up and trying to amend values but it doesn’t seem to want to make a difference to the appearance in iPad mode…?
As I shrink the width, the form doesn’t fit as one would expect.
And again, the page again looks good on a mobile screen.
Let me tell how would I make the adjustments.
The div with the class of red-background has a huge horizontal margin of 740px, this can cause a huge problem for the viewer, this is because on medium screens, the actual form will be very few pixels to accomodate the large margin.
.red-background {
margin: 20px 370px;
}
What I would do is set the horizontal margin to auto, and set the width to approx 75%. It would look like this. Again this is my personal preference.
.red-background {
margin: 20px auto;
width: 75%
}
I would set the horizontal margin for .red-background to auto for all screens. I would specify the width of the container.
I would avoid using !important for css selectors often.
Your form looks good @Chelsey. Some things to revisit;
Make the project from scratch, with your own code, style and content. Don’t take code from the sample project.
For what you have now (until you make your own)
There’s a horizontal scrollbar on large and medium screens
Since you’ve referenced the sample already, notice that there’s no media queries. On a page like this if you use relative units (em, rem, percentages) you shouldn’t need one.