Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
9
Comments
11
Edudje wisdom
@Citycod

All comments

  • Nikita Ivonin•10
    @NikitaIvonin
    Submitted 4 months ago
    What challenges did you encounter, and how did you overcome them?

    i thought it would be easy... but the last part of the layout gave me a lot of trouble and i'm not sure if i'm using the fonts correctly in my work, i'd love to know more about it

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

    correctly using fonts, and project structure gor my first project after FREECODECAMP HTML section

    restaurant-menu-page

    1
    Edudje wisdom•130
    @Citycod
    Posted 4 months ago

    Nice, keep going

  • MarkPraise•150
    @MarkPraise
    Submitted 10 months ago
    What are you most proud of, and what would you do differently next time?

    Using the js validation API and sass was a breath of fresh air

    Repayment page using HTML CSS JS validation API and scss

    #sass/scss
    2
    Edudje wisdom•130
    @Citycod
    Posted 10 months ago

    You did well Just adjust the spacing at the mortgage calculator left side, work on the spacing at the bottom and up inside the container u created

  • anwar-elbarry•110
    @anwar-elbarry
    Submitted 11 months ago

    Testimonials grid section solution

    1
    Edudje wisdom•130
    @Citycod
    Posted 11 months ago

    Keep it up

  • anwar-elbarry•110
    @anwar-elbarry
    Submitted 12 months ago

    features-card

    1
    Edudje wisdom•130
    @Citycod
    Posted 12 months ago

    lovely, smooth work

    Marked as helpful
  • fox22432•30
    @fox22432
    Submitted 12 months ago
    What are you most proud of, and what would you do differently next time?

    I've been able to use more semantic HTML and flex to do centering and adaptive stuff. I was able to approach the challenge with the mindset that the page might be dynamic, so description can be longer or shorter and it shouldn't break the page.

    Adjusting fonts and margins by eye was annoying (I use jpg version of design file) so I wasn't pixel hunting too much.

    I think class names could be better and also I could use more general classes that would combine some similar elements.

    What challenges did you encounter, and how did you overcome them?

    I've had trouble with vertically aligning text, some finessing was done. Also I've noticed that the picture in design file is a bit darker and more contrasty, I've decided not too fiddle with this too much, since I assume this is outside of normal CSS work.

    Basic solution

    1
    Edudje wisdom•130
    @Citycod
    Posted 12 months ago

    keep it up, as you solve more problems you become better.

  • Jose Antonio Sánchez•470
    @crimson3d
    Submitted over 1 year ago

    Recipe tagged with semantic language and laid out with CSS flexbox

    1
    Edudje wisdom•130
    @Citycod
    Posted 12 months ago

    keep it up

  • Amr-Atef-k•30
    @Amr-Atef-k
    Submitted 12 months ago

    I'm struggling with the padding and div spacing, please look at my css

    2
    Edudje wisdom•130
    @Citycod
    Posted 12 months ago

    Main Container (main) The main element is styled to be centered both vertically and horizontally using position: absolute; and transform: translate(-50%, -50%);. This approach works, but it's not responsive. Consider using Flexbox or Grid for centering. The height and width are fixed, which might not be ideal for different screen sizes. A more flexible layout might use percentages or max-width/max-height. The box-shadow property creates a shadow, but using 0px 0px for the last two values would make it more natural. Photo Styling (main .photo) padding: 30px; is used, but ensure there's enough space in the container (main) to accommodate this padding without overflowing. border-radius: 40px; is quite rounded, which is fine if that's the intended design. Info Section (.info) Padding is set uniformly with padding: 0px 30px 0 30px;. It’s better to use padding: 0 30px; for consistency. The .f class is used for a small element. Consider whether the fixed width and height are necessary, as they could cause issues with responsiveness. Spacing Issues .s, .l { padding: 10px 10px 10px 0px; } can be simplified to padding: 10px 10px 10px 0; or padding: 10px 10px 10px 0;. .s-card has some padding, and the display: flex; align-items: center; is good for aligning the items horizontally. Text and Image Alignment .s-card h4 has padding-left: 10px; to separate the text from the image. This is fine if the spacing looks good in your layout. .s-card img { height: 40px; width: 40px; } sets fixed dimensions for the image, which might work depending on the design. Ensure that the images you use fit these dimensions well. Potential Issues to Address: Responsiveness: Your layout is fixed in height and width. This might cause issues on smaller screens or when resizing the browser window. Consider using percentages, Flexbox, or CSS Grid to create a more responsive layout. Box Shadow: The current box-shadow can be improved for a more natural look. Consider box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25); for a subtle effect. Absolute Positioning: position: absolute; with transform: translate(-50%, -50%); is an older method for centering. Modern layouts often use Flexbox for easier and more flexible centering.

  • innitman•140
    @innitman
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    It's getting easier the more I do :)

    One issue is accessibility. I tried adding 'a' but it doesn't seem tab navigatable. I will read into tab index and aria more.

    What challenges did you encounter, and how did you overcome them?

    Did this without the Figma, so it won't be pixel perfect.

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

    I need to read into tab index and aria more. Any advice on helping make it more keyboard accessible appreciated :)

    Divitis still...

    2
    Edudje wisdom•130
    @Citycod
    Posted about 1 year ago

    keep it up, greater heights.

  • Yash Bhatt•280
    @Y-ashbhatt
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Was able make Mobile responsive easily this time unlike the confusion with qr-code project. Next time I would like to practice grid because I still went with flexbox.

    What challenges did you encounter, and how did you overcome them?

    Getting the size correct was a problem. I constantly compared it to solution to get it as close as possible but this doesn't seem efficient.

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

    The best approach to get size if you don't have figma design files?

    Blog preview card solution

    3
    Edudje wisdom•130
    @Citycod
    Posted about 1 year ago

    keep it up

  • Andre•40
    @speeddemon911
    Submitted over 1 year ago
    What are you most proud of, and what would you do differently next time?

    I liked the fact that I was able to get it pretty close aesthetically to what was provided. There's always room for improvement though.

    What challenges did you encounter, and how did you overcome them?

    Most of my challenges I was able to google and resolve quickly. I didn't remember the css padding, margins, and which order they needed to be adjusted.

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

    How is my overall layout? How can I make it clearer and easier for another coder to take over the project and not have a hard time understanding what I did?

    Responsive Recipe Page using basic css

    1
    Edudje wisdom•130
    @Citycod
    Posted over 1 year ago

    please how do u publish this assignment page on github

  • abd-elrahman-sattouf•10
    @abd-elrahman-sattouf
    Submitted over 1 year ago

    Responsive qr-code-card component layout using html5 and CSS flexbox

    1
    Edudje wisdom•130
    @Citycod
    Posted over 1 year ago

    Great work, keep it up bro

    Marked as helpful

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