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

Grid-Section

SheikBazithโ€ข 240

@SheikBazith

Desktop design screenshot for the Testimonials grid section coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


I have a question the first purple div theres an quotation image how can i fixed its position. As the image moves when its responsive

Community feedback

@MelvinAguilar

Posted

Hello there ๐Ÿ‘‹. Good job on completing the challenge !

I have other answer about your question.

You can update the background-position. Currently, you are placing the image 25rem from the left edge, which is quite substantial and a fixed property. You could change it to:

background-position: right 18% top;

This means it should be placed on the right side, at 18% from the right edge, and at the top. This way, it will always stay on the right without being hidden.

I hope you find it useful! ๐Ÿ˜„

Happy coding!

Marked as helpful

1

SheikBazithโ€ข 240

@SheikBazith

Posted

@MelvinAguilar thank you Will make sure to change that

0

Account Deleted

Hi, congrats on completing the challenge.

One way to add the quotes image is by using pseudo-elements, :after or :before in the purple div and use the image as content, and play whit the top/bottom/right/left to make the position you want. Something like

.purple__div::after {
  content: url(quote-image);
  position: absolute;
  top: 0;
  right: 25%;
}

Note: English is not my native language, so sorry for anything

Marked as helpful

0

SheikBazithโ€ข 240

@SheikBazith

Posted

@TeixeiraCamila thank you so much. I will go through the topics and try to implements

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