Let me know what u think about code, and if that's the corect way to achive this solution! :)
Thanks in advance!
Let me know what u think about code, and if that's the corect way to achive this solution! :)
Thanks in advance!
Hello, congrats on completing your FEM challenge, yep you approach the design as needed but at some viewports, your content is overflowing and some other suggestions that would help you with your design and solution
background-repeat:no-repeat;
max-width
to a body or make a container class that wraps your all content, by adding it you can control your content from growing too much on larger viewports and save yourself from this situation a
, logos are used to navigate on the home page in most the casesalt
attribute but for decorative images, you should leave alt
as blank alt=""
and use role=" presentation"
or aria-hidden=" true"
to make sure all screen readers ignore those images. In your case, the illustration image is decorative.<main>
<div class”wrapper”>
</div>
</main>
Apart form this very well done, keep up the great work
please take out time to give feedback on this challenge. Thanks
Hi saykeed, Nice work, I think some minor changes make your solution looks more similar to design
background-color: hsl(210deg 46% 95%);
as background-coloruse body or make container class{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
grid-template-columns
use 1fr
which is handier to achieve designmax-width:1110px
on card container because card container is not 1440px, this disturbs your hole designHope it would help you
Anything that would help me to improve on this would be appreciated!
Hey Arslan, congrats on completing this challenge, you did a great job
some suggestions would be
h1
per page, mainly for tilting the pagerem
or em
, don’t go with pixels, if you are writing scss make a function to convert pixel to rem, it would be handyAny suggestions on how to improve this solution are much welcome. Thank you!
Hi, you already get the valuable feedback, I want to add some more points
.huddle-introduction-content
instead of use max-width, becasue it causes horizontal overflowing.huddle-introduction-content {
display: flex;
/* width: 40rem; (max-width: 40rem)
max-width
to a body or make a container class that wraps your all content, by adding it you can control your content from growing too much on larger viewportsa
, logos are used to navigate on the home page in most the casesAside from this Great effort, keep it up
Hello again! This is my third solution for this community!
As always, I tried to make 10/10 similarity between my solution and the design. I found the obstacles when making the social media logo on the footer, but I think I figured it out.
Any feedback, advice, and suggestion is what I need :)
Have a great day fellow developers!
Hi congrats on completing your third FEM solution, you succeeded in similarity, some suggestions that would help you
width
on illustration-Image, it causes a horizontal scrollbar at some viewports, use max-width
insteadmax-width
to a body or make a container class that wraps your all content, by adding it you can control your content from growing too much on larger viewportsa
, logos are used to navigate on the home page in most the casesHappy coding :)
Hi there, I just finished this challenge any feedbacks are welcomed thank you.
Hey, Great job on finishing the project! The layout looks decent, HTML and CSS are structured very well, some suggestions that would help to improve your solution more
-Try to add max-width to a body or make a container class that wraps your all content, by adding it you can control your content from growing too much on larger viewports
blockquotes
for testimonial quotes text instead of writing it directly in divpadding-bottom
to itApart from this very well done, keep up the great work
Feedback will be appreciated!! 😁 I have a problem with the color of the social media icons when its hovered. I can solve this by importing editable icons from somewhere else but i'll like to use the assets contained in the starter pack. I'd appreciate any help.
Hi Nice Work, Awesome work on this one layout looks great and responds well on all sizes but there is a small issue that content is growing too much on larger viewports add max-width
to a body or make a container class that wraps your all content, by adding it you can control your content from growing too much on larger viewports, it is first stepped to responsiveness in my opinion.
I think you are on the right path of using the filter to your image on hover but the filter you used is not right Check out this code-pen it will generate filter which you want This is generated by this code pen,
.social a:hover {
filter: invert(56%) sepia(100%) saturate(338%) hue-rotate(122deg) brightness(90%) contrast(85%);
}
And if you would use direct SVG in your Html, This css tricks link would lead you to the best
Apart form this very well done, Keep up the great work
any recommendations or enhancment? ^_^
Hi Mohamed! Awsome work layout looks good and HTML is very well structured
some suggestions are
a
, logos are used to navigate on the home page in most of the casesa
link, in my opinion, using a tag and not a button. Use the button if it will act as a control for something. But on this, it is treated as a link, go for a tag.hope it would help you
does anybody know how to place the container of all testimonials right at the center? any feedback would be helpful! :)
Hi!
To your question;
Justify-content:centre
and align-content: centre
would place your grid-section-container to perfectly centre but you need to remove some styles check out this these are some styles that need to be removed
Some other suggestions would be
h1
per page usually for tilting the pagemax-width
to your body or make a container class that wraps your all content, by adding it you can control your content from growing too much on larger viewportsblockquotes
for quotes instead of using p
Apart from this very well done, keep up the great work
I couldn't make the background look exactly as it was shown in the challenge. it would really be appreciated if I got some tips on how to do it or improve on my existing CSS. Thanks.
Hi congrats on completing your first FEM challenge, It looks good and behaves well on all viewports
To your quesiton;
Your background image is placed where it has to be, Use correct background color on body which is hsl(225deg 100% 94%) (very pale blue) And don’t need to use gradients on the background image, use as it is. Then your background looks like to the design You confused yourself in overlays, I have a little simple solution for you, Use background color in body and use background image in the body too here is my solution hope it would help you in this case
Some other suggestions that would help you to improve your design
button
for navigating somewhere it is good to go with a
.card-container
, using hard code would cause some issues, I know in this solution your design is not very much affected form this, but in future projects, this habit falls you in the cumbersome scenarios. Try max-width
and min-height
instead<main>
<section>
</section>
</main>
<footer>
</footer>
Stats Preview Card Project: I will be glad to know your opinion about my project 😄
Hi, Nice work! some suggestions would help you
max-width
instead, and adopt the habit of not specify fixed heights and widths, it would create unexpected issues for you.In my last challenge I was told to use more relative measure units so in this challenge I tried to focus on that. Please feel free to give me any tips of how I can improve the code.
Hi ClariceAlmeida, I’m glad to hear that you imply what you learn in the previous code reviews, keep doing this approach, You will surely succeed.
Some feedback on your solution
button
for navigating somewhere it is good to go with a
max-width
insteadalt=""
and use role=" presentation"
or aria-hidden=" true"
to make sure all screen readers ignore those images. In your case, the music icon and your hero image are decorative.