Latest comments
- @jjjayed@jjjayed
Thank you for your feedback! I have fixed all the things you have mentioned, except the background images. It was way harder to understand than I thought. I will come back to it some time. Thanks again!
- @rluna15@jjjayed
I think it should be
mix-blend-mode:hard-light;
instead of background-blend-mode - @rafaelisidorio-dev@jjjayed
Hi there! You can use a media query and add a certain breakpoint, then make the container have
flex-direction: column;
instead of a row. Hope this helps.Marked as helpful - @Nicoleyvette@jjjayed
Hey there! Congrats on your first project. Just a couple of things to address.
-
A lot of the issues you have right now is because of the lack of responsiveness, that's why the design is strictly for mobile. I highly recommend reading up on responsive web design and using @media queries.
-
I also noticed that your fonts aren't working because you need to put
font-family: Kumbh Sans
The plus sign is not needed for the CSS part. -
Lastly, a cool trick. Surround the "26" text with a span tag, while still being inside the h1 tag. You can then select that span tag in the CSS and change its font weight to 400.
Hope this helps.
-