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

  • @moeen-mahmud

    Posted

    Hello Chloe,

    First of congratulation on making this project. Your solution is pretty good for the mobile view but you have to make it for the desktop view as well. Try to follow the desktop version design. You can view my solution here: https://www.frontendmentor.io/solutions/stats-preview-card-component-ZDUEVIXWP Hopefully, you will understand the issues regarding your project.

    Marked as helpful

    0
  • @moeen-mahmud

    Posted

    Thank you very much for the information.

    0
  • @Abd-ur-Rahman03829

    Submitted

    I have completed the challange but i have a samll problem that how can i change the position of background bubbles.... Any suggestion about that would be very helpfull.... Thanks in advance.....

    @moeen-mahmud

    Posted

    Hello Abd-ur,

    Your approach to the solution is good. For the background, you can use the images as "fixed position", something like below:

    .background_image--top {
      position: fixed;
      bottom: 45%;
      right: 50%;
    }
    
    .background_image--bottom {
      position: fixed;
      top: 50%;
      left: 45%;
    }
    

    You can view my code here: https://github.com/moeen-mahmud/profile-card-component

    0