Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
24
Comments
316
faizan
@afaiz-space

All comments

  • Deepali Panchal•310
    @Deepali25-K
    Submitted almost 2 years ago

    Fylo Landing Page with Two Column Layout

    1
    faizan•2,420
    @afaiz-space
    Posted over 1 year ago

    @Deepali25-Kv, hi..... I noticed some issues in your design.

    • Header content is overflowing. The ul tag in the footer also has an overflow
  • Cristina Kelly•140
    @cristinakellyt
    Submitted about 2 years ago

    Simple interactive card using TYPESCRIPT/SASS/WEBPACK

    #sass/scss#typescript#webpack#handlebars
    1
    faizan•2,420
    @afaiz-space
    Posted about 2 years ago

    Hey @cristinakellyt .

    When hovering over the button of number 2. Then the color of the button of number 1 changes. This is happening with each and every button. When you hover over the forward button, then the hover effect will be seen on the button before it.

    -- I think there is a problem.

    #rating-values input:hover+input {
    background-color: #959eac;
    color: #fff;
    }
    
  • Danielle Aranda•20
    @DLMedeiro
    Submitted about 2 years ago

    Price Grid Gomponent using CSS Grid

    2
    faizan•2,420
    @afaiz-space
    Posted about 2 years ago

    Hey @DLMedeiro,

    • add display: flex; align-items: center; gap: 8px; in h3 tag for vertical center alignment.
  • Deepak Saroha•120
    @deepaksaroha
    Submitted over 2 years ago

    Social-proof-section

    1
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @deepaksaroha,

    • background curve images used in the body element in the CSS file.
    • remove height: 80%; from .container class.
    Marked as helpful
  • Karen Lourenço•380
    @KarenMascarenhasLourenco
    Submitted over 2 years ago

    Clipboard Landing Page

    1
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey, @KarenMascarenhasLourenco

    • add hover color in social icon and footer links.
  • Nikita Barnwal•40
    @nikitabarnawal
    Submitted over 2 years ago

    Responsive result summary for absolute Begineers

    #react
    2
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    hey @nikitabarnawal,

    • change color / 100.
    • why not use heading tags for heading.
    • verticle align icons and heading.
  • 👾 Ekaterine Mitagvaria 👾•7,860
    @catherineisonline
    Submitted over 2 years ago

    Intro section with dropdown navigation

    9
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @catherineisonline,

    • if not provide any hyperlink in the anchor tag. then use # ex (<a href="#">Todo List</a>)
    • add line-height: normal; in the button element.
    • replace min-width:1000px; with min-width:1200px; in the main element.
  • nuket•60
    @nukettas
    Submitted over 2 years ago

    Testimonials-grid-section

    2
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @nukettas, congratulations on completing the challenge.

    • instead of using the top left property use the grid property then you will get a better result.
    • also make a responsive website. Must have a mobile-first approach.
  • Endo_hr•60
    @EndoHr
    Submitted over 2 years ago

    Product-preview-card-component

    4
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @EndoHr, congratulation on completing the first challenge.

    add

    body {
        /*background-color: hsl(30, 38%, 92%); */
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    

    remove position left and top property from cart class.

    .cart {
        /* position: relative; */ 
        /* left: 28%; */
        /* top: 80px; */
        display: flex;
        border-radius: 10px;
        width: 35rem;
        flex-direction: row;
        overflow: hidden;
    }
    
    • remove height and replace width:21%; with width:50%; in the .perfume class.
    • replace width:21%; with width:50%; in the .details class.

    remove top and left property from the media cart class.

    @media only screen and (max-width: 600px)
    .cart {
        /* top: 10px; */
        flex-direction: column;
        /* left: 5%; */
        width: 100%;
    }
    
    • replace /* width: 90%; */ with width: 100%; in the media .perfume_mob class.
  • cmb347827•870
    @cmb347827
    Submitted over 2 years ago

    Interactive rating component challenge with Bootstrap & SASS

    #bootstrap#sass/scss
    1
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @cmb347827,

    • add display: grid; place-items: center; min-height: 100vh; in the body element. remove all properties from the main element.
    • add border-radius:12px; in the .container class.

    replace

    main .container form .svg {
        width: 38px;
        height: 38px;
        background-color: Silver;
        background-color: #7c8798;
        border-radius: 50%;
    }
    

    with

     .svg-parent {
        /* border: 2px solid red; */
        width: 40px;
        height: 40px;
        display: grid;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f8f8f8;
    }
    

    for logo alignment appropriately.

  • Irfan Hafizh•150
    @irfanhfzh
    Submitted over 2 years ago

    Responsive Stats Preview Card Component Main using HTML and CSS

    #bem
    2
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @irfanhfzh,

    ongratulation on completing the challenges. I noticed an issue in your project.

    • add align-items: center; justify-content: space-evenly; and replace padding: 78px 121px 64px 70px; with padding: 0 30px; in the .card__content class.
    • remove height: 180px; from the .card__summary class
    • replace width: 350px; with width: 100%; and remove margin-top: auto; from the .card__socials class
  • 👾 Ekaterine Mitagvaria 👾•7,860
    @catherineisonline
    Submitted over 2 years ago

    News homepage

    9
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    @catherineisonline

    • add box-sizing: border-box; in the ** * universal** selector;
    • replace height:100vh; with the min-height:100vh; in the body element.
    • remove margin-top: -0.6rem; from the .featured a element.
    • replace align-items: top; with align-items: flex-start; in the .post class.(Content is overflowing by giving height of post class)
  • Candice•50
    @candiuk
    Submitted over 2 years ago

    Four card feature section

    1
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @candiuk

    • add min-height: 100vh; in the body element.
    • remove max-width:350px; and add width:100%; in the card class.
  • Sabir Khan•80
    @simplysabir
    Submitted over 2 years ago

    Social Proof Landing

    2
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @simplysabir

    • add a curved background image in the background.
    • add min-height:100vh; in the body and the .container class. -add height: 350px; in the .cards class.
    • remove the margin from the card1, card2 and card3 in the class.
    • add self-align:flex-start; in the card1.
    • add self-align:center; in the card2.
    • add self-align:flex-end; in the card3.

    same property used in the rating card.

    Marked as helpful
  • Sabad Perez•60
    @Meistter
    Submitted over 2 years ago

    QR Code Card

    2
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey, @josuep723

    • Remove width and add padding in the texto class.
    .texto {
        /* width: 80%; */
        padding: 10px;
    }
    
    Marked as helpful
  • S.Aloui•300
    @Souheib-Aloui
    Submitted over 2 years ago

    Position absolute and relative

    2
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey @Souheib-Aloui

    • background circle image used in the body element with the help of background-image property use
  • Chambrin•20
    @chambrin
    Submitted over 2 years ago

    mousehover

    1
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey, @chambrin congratulation on completing the challenges.

    • also add a hover effect in the image and add an eye SVG image on the image.
    • add align-items: center; in the .content-bottom div class.
  • Noseriouszv•90
    @Noseriousv
    Submitted over 2 years ago

    Product-preview-component

    3
    faizan•2,420
    @afaiz-space
    Posted over 2 years ago

    Hey, @Noseriousv congratulation on the completing challenges.

    • remove background color from the ( * ) universal selector.
    • add background color in the body element.

    . . keep it up......

    Marked as helpful
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub