Search code examples
csshtmloverlapping

css - why are my images overlapping?


If you can to section "Equipe" on my website http://goo.gl/ok43H, you will see that the avatar pictures are overlapping vertically and I would like to have at least 10px btw each one. What is the issue and how can I fix this? Many thanks!


Solution

  • Try:

    .equipe-bio {
    padding: 0 0 0 110px;
    position: relative;
    width: 50%;
    margin-left: 10%;
    margin-bottom: 24px;
    }
    

    You can replace margin-bottom: 24px; with any amount of pixels you wish, but this will create space in between the images.

    Good luck!