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

  • @patricksanto

    Submitted

    I'm having some issues creating the Avatar's profile picture border, once the png is a square and all I want is creating a rounded border. trying to create a ::before circle content, 1px bigger than the img, and put it bellow , but this function didn't work for img elements .

    Would be great to have some help here.

    @ojaswishivam

    Posted

    Hey @patricksanto, for creating a circular border you can follow these steps:

    • Assign a border to your .user .avatar
    • border: 2px solid white;
    • Now give it a border-radius of 50 px
    • border-radius: 50px;

    Happy Coding😄

    Marked as helpful

    1
  • @ojaswishivam

    Posted

    Hello @rdghostmann, first of all, congrats on completing this challenge.

    Here are some suggestions to improve your code:

    filter: drop-shadow(0 12px 7px rgba(7, 23, 255, .245));
    

    Helpful Link: Drop-Shadow

    Happy Coding!! 👻🎃

    Marked as helpful

    1
  • Rd 70

    @rdghostmann

    Submitted

    Hi everybody.. I look forward to perfecting my skills especially with semantics and accessibility and I will love ❤ to get your suggestions to be better.

    @ojaswishivam

    Posted

    Hello @rdghostmann, first of all, congrats on completing this challenge.

    Here are some suggestions to improve your code:

    filter: drop-shadow(0 12px 7px rgba(7, 23, 255, .245));
    

    Helpful Link: Drop-Shadow

    Happy Coding!! 👻🎃

    0
  • @ojaswishivam

    Posted

    Hello @02fede02, first of all, congrats on completing this challenge.

    Here are some suggestions to improve your code:

    filter: drop-shadow(0 12px 7px rgba(7, 23, 255, .245));
    

    Helpful Link: Drop-Shadow

    • On hovering over Change the underline should disappear, so use the <a> tag and change the text-decoration to none
    text-decoration: none;
    

    Happy Coding!! 👻🎃

    Marked as helpful

    0
  • @ojaswishivam

    Posted

    Hey @nhaux, congrats on completing the project

    Here are some suggestions:

    • Change the <background-color> of your line class to this
     background-color: hsl(215, 32%, 27%);
    
    • Try changing the transition effect of image to transition: opacity 0.3s ease-in-out;

    Happy coding! 👻🎃

    0
  • @ojaswishivam

    Posted

    Hello @Jairth, first of all, congrats on completing this challenge.

    Here are some suggestions to improve your code:

    filter: drop-shadow(0 12px 7px rgba(7, 23, 255, .245));
    

    Helpful Link: Drop-Shadow

    Happy Coding!! 👻🎃

    Marked as helpful

    0
  • Mwakamba 10

    @Sanderson-Nyange

    Submitted

    I encountered challenges in implementing the media screen sizes using CSS. I would appreciate being assisted with that.

    @ojaswishivam

    Posted

    Hey @Sanderson-Nyange, here are some suggestions to improve your code:

    • auto is not a valid value for padding property, but you can use auto in margin property

    • The Alt Tag Description for the image needs to be improved upon. You want to describe what the image is; they need to be readable. Assume you’re describing the image to someone.

    • You have import Google Fonts of weight 400 and 700 in your project, Here is an example of how you can do it:

     <link rel="preconnect" href="https://fonts.googleapis.com">
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
     <link href="https://fonts.googleapis.com/css2? 
       family=Outfit:wght@400;700&display=swap" 
       rel="stylesheet">
    

    The Media Query used by me:

    @media only screen and (max-width:629px)
    

    Happy Coding! 👻🎃

    Marked as helpful

    0