Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
27
Comments
11

Macaulay Omoikhoje De-great

@MacChristoLagos, Nigeria.550 points

I'm learning how to code and write programs and web development.

I’m currently learning...

Web development with HTML5, CSS3,TailWind CSS, ReactJS and more...

Latest solutions

  • REST Countries API with Color Theme Toggle

    #bootstrap#next#react#tailwind-css#typescript

    Macaulay Omoikhoje De-great•550
    Submitted 8 months ago

    Any areas that seems to need help and corrections, please, don't hesitate to notify me. Thank You.


    0 comments
  • Responsive Advice generator using API, HTML5, CSS3 and ReactJS

    #react#accessibility

    Macaulay Omoikhoje De-great•550
    Submitted about 1 year ago

    I think I did a pretty good work though. But no one is perfect! Please I'd like the big guns to take a look at the project-the layout, design and functionality and let me know if there's anything that needs to be changed or done better. I hope to learn more. Thank you...


    0 comments
  • Responsive Expenses Chart Component with HTML5, CSS, JS, and FlexBox.

    #accessibility#sass/scss

    Macaulay Omoikhoje De-great•550
    Submitted over 2 years ago

    0 comments
  • Responsive Interactive Card Details Form(#HTML5, CSS, FlexBox)

    #accessibility#sass/scss

    Macaulay Omoikhoje De-great•550
    Submitted over 2 years ago

    0 comments
  • Responsive Notifications Page(HTML5, CSS, FlexBox, Mobile-first)

    #accessibility#sass/scss

    Macaulay Omoikhoje De-great•550
    Submitted over 2 years ago

    0 comments
  • Responsive Ping Coming Soon Page(HTML5, CSS, FlexBox, Mobile-first)

    #accessibility#sass/scss

    Macaulay Omoikhoje De-great•550
    Submitted over 2 years ago

    0 comments
View more solutions

Latest comments

  • weValueYourPrivacy•10
    @weValueYourPrivacy
    Submitted 9 months ago
    What challenges did you encounter, and how did you overcome them?

    guessing the size

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

    not sure if i got the size of the card right

    qr card minimalist code

    1
    Macaulay Omoikhoje De-great•550
    @MacChristo
    Posted 9 months ago

    First off, Your QR image isn't showing on the live site. I think your image path is wrong. It should be images/image-qr-code.png. Try adding a bit of border-radius to your QR code. From what I saw in the Frontendmentor preview, the border radius are missing.

    Try these corrections in your code. You did well mate. And I liked how you didn't use a lot of code. When i did mine some time ago, i used a whole lot of code and it wasn't even as clean as yours😂😂😂😂.

    Good work 👍

    Marked as helpful
  • Daniel•80
    @duokobia
    Submitted almost 3 years ago

    Responsive Landing Page Using FlexBox and CSS Grid

    1
    Macaulay Omoikhoje De-great•550
    @MacChristo
    Posted almost 3 years ago

    You sure have a lot of css and media queries there. But try to make all the content of your site show at different screen sizes. I still have quite a problem making mine show though, but what i do is give a lot of padding-bottom in vh to the last div or container on the site. By that at least, all my content shows. Your desktop button should have {border: none}

    Marked as helpful
  • Rohan Arora•70
    @rohan-arora20
    Submitted almost 3 years ago

    Product Preview Card Component

    1
    Macaulay Omoikhoje De-great•550
    @MacChristo
    Posted almost 3 years ago

    Add a width of 190px to the .product-heading

    .product-heading {
    width: 190px;
    }
    
    Marked as helpful
  • Samantha•30
    @samanthascarcella
    Submitted almost 3 years ago

    Responsive NFT card (HTML, CSS)

    #bulma
    3
    Macaulay Omoikhoje De-great•550
    @MacChristo
    Posted almost 3 years ago

    if you are having issues with responsiveness, I think this might be able to help you.

    Marked as helpful
  • Abigail•10
    @Abbyiegirl
    Submitted almost 3 years ago

    QR code challenge

    3
    Macaulay Omoikhoje De-great•550
    @MacChristo
    Posted almost 3 years ago

    1.when you put an image on the screen, you need to style it by tweaking the width, height, etc

        font-family: "Outfit" , 'sans-serif';
        font-size: 15px;
        background-color: var(--light-gray);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: calc(100vh-1px);   *<---Remove*
        /* margin: 1.25rem; */      *<----Remove*
        align-content: center;
        height: 100vh;                     *<----Add*
    }
    

    for the container-div

    .container {
        max-width: 320px;
        justify-content: center;
    }
    

    Remove the padding on the container-img

    .container h1 {
        color: var(--dark-blue);
        text-align: center;
        margin-bottom: 1rem;
        max-width: 285px;      *<----Add*
        font-size: 22px;           *<----Add*
    }
    
    .container p {
        color: var(--grayish-blue);
        text-align: center;
        max-width: 260px;     *<---Add*
    }
    
    .attribution {
        font-size: 11px;
        text-align: center;
        position: relative;      *<----Add*
        top: 2rem;                  *<---Add*
    }
    

    Hope this helps....Happy coding

  • Mab•20
    @nbozb
    Submitted almost 3 years ago

    QR Code - My First Frontend Mentor Project with HTML and CSS

    3
    Macaulay Omoikhoje De-great•550
    @MacChristo
    Posted almost 3 years ago

    Try and wrap your main contents inside a <main> tag. Since there are only two object on the body, the container and the attribution, you can have something like this:

    body:{
        display: flex;
        flex-direction: column;
        align-items: center;   *This will center the objects after using flex*
        justify-content: space-between;      *Add these to the body*
        overflow: hidden;
        height: 100vh;
    }
    

    Remove all styles from your attribution

      <footer>
    
        <div class="attribution">
          Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
          Coded by Mabs.
        </div>
      </footer>
    

    Your attribution should be in footer tag. And no need to wrap the attribution element in a paragraph tag. All styles they need should be applied to the .attribution class. The follow-come styles for the attribution are even enough. just need to reduce the font-size. Hope this helps.

    Marked as helpful
View more comments
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