Hi everyone,
This is my Order Summary Component. I don't think that there was something that I find difficult in making the component, but if there's something that you see wrong on how I approach the challenge feel free to comment it out. 😁
Hi everyone,
This is my Order Summary Component. I don't think that there was something that I find difficult in making the component, but if there's something that you see wrong on how I approach the challenge feel free to comment it out. 😁
Hi Jav,
Great job with completing this challenge and at making it responsive
If you don't mind, here's some small improvements you can make:
Accessibility issues:
<html lang="en">
just ensure that all of the content is indented within this tag.
Responsive Design: I think you have done this part perfectly
Overall this is great and good luck for your other challenges.
Hi Vaibhav,
Good job with completing this challenge!
If you don't mind, here's some improvements you can make:
Accessibility issues:
This has an easy fix, rather than using <h5>
, try to just increase the value by one and then change the font-size
in styles.css
.
Purple Filter I was also not able to figure out how to add the purple filter overlay to the image, if you figure out how to do this please let me know!
Hope this helps, and let me know if you have any other questions.
Hi Vishal,
Good job with completing this challenge
If yo don't mind, here's some improvements you can make:
Accessibility issues:
These are easy fixes such as using html landmarks (<main>, <header>, <footer>) instead of putting all of your content inside <div> tags.
Font: The font that is in the design is provided in the style-guide.md
file, where you can go to google fonts, add the font and paste the link into your html / css document.
Centering Content :Rather than using display: absolute
, you can effectively center your content using css Flexbox, by putting the code in a container and using
display: flex;
align-items: center;
justify-content: center;
Responsive Design: I would suggest taking a look at Media Queries to understand how to make a website responsive, which just means it will look good on a mobile device with a smaller pixel width.
Hope this helps, and let me know if you have any other questions!
Hey Reymart,
congrats on completing this challenge you have done a great job especially with the share button.
Here's some other suggestions:
HTML issues:
href
inside the <a>
tag instead of
<a link=``>
alt
text in your images as a description for accessibilityFlexbox: You can effectively center your content using css flexbox, by putting the code in a container and using
display: flex;
align-items: center;
justify-content: center;
Hope this helps, and let me know if you have any other questions.
styles.css Line 113: Here I had to use width 400% to my image to make it work, can you tell me why? How can I fix it?
Hey Francisco, Congrats on completing this challenge and good job on making it responsive!
I don't think you need the line 113 styles.css
is required.
Here's some other suggestions:
display: flex;
align-items: center;
justify-content: center;
Hope this helps, and let me know if you have any other questions.
Dear Emily, congrats on completing this challenge!
Here's some advice for your solution:
Colors: The colors for the text have been provided in the style-guide.md
file.
This can be done simply by adding the color
attribute in your css file.
The challenge in this component is, how to transform the values of the JSON data to a shape and background color, and how in case of a change occurred in the data, the bars change also accordingly. The challenge was a great opportunity for me to get a deep understanding of some notions in React js especially the hooks, the event in javascript.
the use of useEffect enabled me to put the background for all the bars taking into consideration the bar with the maximum amount, also the use of the style inline for the height enabled me to draw the shape of the bar.
Dear Abdelouahed, congrats on this challenge!
I also just completed this one so I know it wasn't that easy.
Here's some suggestions if you don't mind:
Good luck for future challenges!
It was a simple challenge and I totally loved it...Though I didn't face any problem , but if I had made made any mistake feel free to point it out....and I'd be grateful if you can give me some feedbacks to improve 🙏
Hey Taskin,
Congrats on now having any accessibility or html issues!
Your solution is comprehensive, one thing you can change is the font weight on the h1 text, this can be done by changing the font-weight attribute in css, and also make sure you added it on google fonts before your input.
Good luck with other challenges!
I will be glad about any feedback 😍
Hey Abdallah,
Congrats on this challenge!
Few things you can improve on:
Good luck with other projects!
THIS IS MY VERY FIRST PROJECT I AM COMPLETE BEGINNER.. I AM CURRENTLY LEARNING HTML AND CSS... ANY FEEDBACK IS HIGHLY APPRICATED...THANK YOU
Hey Rahul,
Congrats on completing your first challenge!
It looks good and congrats on getting the sizes to match perfectly.
A few recommendations:
It's my first ever javascript challenge...I know I didn't justify this challenge because i have skiped few features....but I really hope you people are gonna like it....now let me come to the problems...In this challenge, you have to select the 1,2,3,.... buttons and then click to the submit button ..then it gonna take you to the new modal...i don't know how to select individual buttons and change its background color ....so i need solutions for it.....and also need tricks and tips about javascript... Please do tell me if I have made any mistake....and I'd be grateful if you can give me some feedbacks to improve 🙏
Hey @TaskinSultana,
Congrats on your first solution!
I had the same issue while doing this challenge, but I figured you can change the elements color through DOM Manipulation, by changing the background color after clicking a function.
Also the sizes on your buttons is a little off, so for the 1 - 5 buttons try using the html button tag instead of the <a> tag.
Although its not perfect, feel free to take a look at my code here: https://www.frontendmentor.io/solutions/responsive-solution-to-interactive-rating-zemLMYJU2i
I cannot add a hover style in my equilibrium image with an eye icon. please guide me on how to add it.
Hey Gravit,
Congratulations on your solution!
I had the same issue when I did this challenge, I would recommend making the main image into a button, this way when you hover, you can display the other image on top of it.
Feel free to refer to my solution here https://www.frontendmentor.io/solutions/nft-preview-card-FY8wfpWj8s
Secondly, I would suggest fixing the accessibility issues as they have simple fixes, such as adding an alt text, adding a language to the html tag.