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

  • Guli 70

    @GulshanoyIbragimova

    Submitted

    Im new to programming, I would highly appreciate any feedback! I tried hard but couldnt understand why the main image wasn`t fitting to the container fully.

    Ayoola 120

    @Josh-Ay

    Posted

    Hi! Well-done on completing this challenge and welcome to programming!!

    I think you made a really great attempt at this challenge and I think the reason why the image doesn't fit to the container fully is because bootstraps responsive columns i.e, col-lg- has default padding-right and padding-left values. So you would have to override those default values.

    You could try:

    .row .main-image {
        padding: 0;
    }
    

    The image isn't showing though.

    0