Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
7
Comments
12
Lartzmanuel
@Lartzmanuel

All comments

  • thaihanguyen98•30
    @thaihanguyen98
    Submitted over 1 year ago

    Newsletter sign up form with success message

    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Site looks pretty great! Great job👍 In your github repo I found your .gitignore file. gitignore are not meant to be accessed by anyone who views your repository. This is because gitignore files usually contain sensitive data such as passwords. I don't know how you uploaded it in your repo but make sure it's not accessible to others so that sensitive data wouldn't be compromised! Hope this helps!

  • karan-2004•70
    @karan-2004
    Submitted over 1 year ago

    Fully functional age calci

    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Hi there, I just checked your site using mobile phone and everything wasn't in place. Try to make your design responsive to mobile screen by designing your app using mobile first approach Remove the box shadow as it was not in the original design Add some padding in your input to also create some spacing. Try to also play around the font sizes to get your design closer to the original design I hope this helps!👍

  • arikanb•20
    @arikanb
    Submitted over 1 year ago

    Parfume_BeytullahArikan

    3
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    You can use media queries like this:

    @media-query only screen and (min-width: 700px){
    .image-container {
        content: url(/assets/images/etc);
        Object-fit: cover;
      }
    }
    

    Note that I just used 700px as my break point for example sake. You can adjust the break point to your liking.

    I hope this helps👍

  • Sohaib•130
    @Turbosohaib
    Submitted over 1 year ago

    html, JavaScript, tailwindcss,

    #tailwind-css
    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Hey Man, Site looks pretty great in terms of layout. A few things need to be handled. When you hover over some of elements they don't change colors as required in the project. You also need to handle your button's background when hovered on. Your site is not mobile responsive. These issues when handled will make the site perfect! Keep up the good work man :)

    Marked as helpful
  • Jessica Ragnar•30
    @JessicaRagnar
    Submitted over 1 year ago

    QR code component using HTML and CSS

    2
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Hey there, Checked out your site and it's pretty cool.. But a few things.. It'd be better to rather target all html elements and reset to allow proper layout control. Code below

    * { 
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    

    Aside that I think every other thing is fine. Hope this helps!

    Marked as helpful
  • Fluffy Kas•7,675
    @FluffyKas
    Submitted over 1 year ago

    Product Preview Card

    #accessibility#bem#vite
    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Hi there👋. You managed to get your design almost like the original design. That's great!..And what did you say? You this everything under an hour that's really crazy💪. Checked out your codes too and it was clean. Saw a few things in your code I've never known. You're really someone I'd like to learn from🤗🤗

    Great Job there!!

  • Eryk•570
    @szczepanieceryk
    Submitted over 1 year ago

    Newsletter form build using React & SCSS

    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Site looks great but some few alterations have to be made. On mobile screen your image has some padding. Which is not supposed to be so according to the original design. Also "Valid email required" which shows up after a user enters an invalid email should appear at the right top corner of the input box. Your success message screen which also appears after a successful validation is actually supposed to be for a desktop screen rather than a mobile screen. There's a success screen for mobile view too. Kindly check that out and make the design for that too. I hope this helps!

  • Gustavo Dias•290
    @ogustavodias
    Submitted over 1 year ago

    Multi step form with React (Vite)

    #react#vite
    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Site looks really great man! Just checked it out and everything works fine. Great Job!!

    Marked as helpful
  • Anjola Adekunle•40
    @Anjola12364
    Submitted over 1 year ago

    NFT Card Design

    #accessibility#cube-css#styled-components#theme-ui
    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Site looks cool. A few things you need to add

    body {
     display: flex;
     Justify-content: center;
     align-items: center;
     min-height: 100vh;
    }
    

    This code will center you card both horizontally and vertically.

    Also try to adjust paddings of the texts so that it can look close to the original design

    Hope this helps👍

  • Saurav Chakrobartty•140
    @Saurav-Q1
    Submitted over 1 year ago

    Product review page

    2
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    To add custom fonts you can use the @font-face rule..

    @font-face {
      font-family: 'The font family ';
      src: url('path to the font');
    }
    

    To learn more you can read from here

    Hope this helps👍

    Also try to make your site responsive for all screens

  • Subhashree Sethi•100
    @Subhsree
    Submitted over 1 year ago

    Product preview card component

    1
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago
    body {
    display:flex;
    flex-direction: column;
    Justify-content: center;
    Align-items:center;
    min-height: 100vh;
    }
    

    When the flex direction is set to column it will bring the info beside your card to the bottom just as you would want. With the min-height you can choose to use 100dvh.

    Hope you find this useful👍

    Marked as helpful
  • irfanqs•10
    @irfanqs
    Submitted over 1 year ago

    QR code component using vanilla HTML CSS with media queries

    #accessibility
    2
    Lartzmanuel•190
    @Lartzmanuel
    Posted over 1 year ago

    Media queries in CSS are used to apply different styles for different devices or screen sizes. They allow you to create responsive designs that adapt to various devices, such as desktops, tablets, and mobile phones. Here's a general structure for writing media queries:

    @media only screen and (max-width: 600px) {
      /* Styles for small screens */
    }
    
    /* Media query for medium screens (e.g., tablets) */
    @media only screen and (min-width: 601px) and (max-width: 1024px) {
      /* Styles for medium screens */
    }
    
    /* Media query for large screens (e.g., desktops) */
    @media only screen and (min-width: 1025px) {
      /* Styles for large screens */
    }
    

    If you use a mobile workflow first, note that the initial styles you write before any media query will be for mobile screens. You can read more about media queries here

    I hope I helped :)

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