I can not make an element have a wrap in a responsive layout

0

Good afternoon, I'm trying to make a layout responsive but I can not make the product description go under the image when the available space is too small. I have tried with display: flex and float but none worked.

Follow the link on the page in question:

link

    
asked by anonymous 05.07.2017 / 20:42

1 answer

0

You need to use a media player to control the screen, following example:

@media screen and (max-width:992px) {   
     //controlar as classes
     .logo {
         font-size: 20px;
     }
}

In the images use max-width: 100%;

    
05.07.2017 / 22:11