Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @DarkCityTreno

    Submitted

    What specific areas of your project would you like help with?

    Just wanna keep getting better at it even if slowly.

    Darkpoet 110

    @Ojay16

    Posted

    Hi there!

    Congrats on completing the challenge! ✅

    Your project looks amazing!

    I'd like to suggest a fix for a little problem u have :

    U could try using the CSS letter-spacing:; property to add spacing between the letters of the "Perfume" paragraph to give the required outcome.

    Here's a highly efficient approach:

    📌 Apply this CSS to your paragraph with the .product-type class:

    .product-type{
      letter-spacing: 5px;
    }
    

    The letter-spacing: 5px; property gives 5px of spacing between each letter, Thus giving you the desired outcome.

    Hope you find this helpful

    Happy coding!

    Marked as helpful

    1
  • Darkpoet 110

    @Ojay16

    Posted

    Hello there!

    Congrats on completing the challenge! ✅

    Your project is looking fantastic!

    I'd like to suggest a way to make it even better:

    U could try using the flex property to make the content in your nutrition table align correctly to give the required outcome.

    Here's a highly efficient approach:

    📌 Apply this CSS to the nutrition content of the table (You could try giving each gram content the same class to easily target them ):

    .nutrition-list .gram {
      padding-right: 20px;
      color: hsl(14, 45%, 36%);
      font-weight: 700;
    }
    .nutrition-list li {
      flex: 1;
      text-align: left;
    }
    

    The flex: 1; property allows the list items to grow and shrink as needed, which allows you to easily apply the align-items: left property, and the padding-right property on the .gram Adjust the padding to align more to the left.

    Hope you find this helpful

    Happy coding!

    Marked as helpful

    0
  • Darkpoet 110

    @Ojay16

    Posted

    Nicely Done.

    Marked as helpful

    0
  • Darkpoet 110

    @Ojay16

    Posted

    I guess you mistakenly submitted the wrong project.

    0
  • @Blakkdolphin

    Submitted

    What are you most proud of, and what would you do differently next time?

    i'll do javascript next time

    What challenges did you encounter, and how did you overcome them?

    i encountered adjusting the width of the card but i managed to scale through

    What specific areas of your project would you like help with?

    i would like help on the background,it seems to be somehow attached to the card,if i try moving the card container the blue backgriund tends to follow

    Darkpoet 110

    @Ojay16

    Posted

    I cannot access your code to see what was written, so my only feedback is that you need to improve your design. You seem to have an idea of how it should be done, but it is a bit off. Try checking out the "style-guide".md file to see the appropriate colours and fonts to use. Concerning the problem you stated, I would love to advise once I can see the code you have written

    0