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

Submitted

Order summary component using Bootstrap

Stacey 30

@staceysav

Desktop design screenshot for the Order summary component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


Feedback will be highly appreciated! While doing the project I had some difficulties; if you have answers to any of the questions below, please let me know :)

  • How to add waves to the background?
  • The shadow doesn't look as good as in the layout. Is there a change to do the same?
  • I tried to add margins to the "Order summary" line and the paragraph below it, but they didn't seem to work. Where to look to find the root of the problem?

Community feedback

Adriano 33,950

@AdrianoEscarabote

Posted

Hello Stacey, how are you?

I really liked your project. Answering your question on how to put waves in the background:

you can go to the body and put background-image: url(image);, after that you control it with some other resources like for example: background-repeat: no-repeat; background-size: 100% 50vmin; background-position: bottom;

About boz-shadow's question, here's a very good site for you to make some really cool shadows click here

the rest is very good hope it helps... 👍

Marked as helpful

1

Stacey 30

@staceysav

Posted

@AdrianoEscarabote Hi Adriano, thank you for your kind words and helpful advice. I also played with creating shadows on the website you sent me.

0
Eray 1,410

@ErayBarslan

Posted

Hey there, you can add background to body as:

body {
    ...
    background-image: url(./images/pattern-background-desktop.svg);
    background-repeat: repeat-x;
    /* we can use repeat x for this specific image so that it supports wider screens*/
}

Try out box-shadow: 0 25px 20px hsl(225, 67%, 88%); which is what I've used on my solution.

-Instead of <h4> you should be using <h1> for Order summary, each page requires a level one heading. You can style with css as you like. Also their level should change 1 by 1 so you can change <h6> to <h1>.

  • alt should have meaningful explanation. Instead of alt="..." you can use alt="dancing with music illustration" These are my suggestions to improve the solution. Happy coding :)

Marked as helpful

1

Stacey 30

@staceysav

Posted

@ErayBarslan Hey Eray, thanks for the feedback. They helped me improve the code!

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord