Responsive problem

Hi,
I have problem at responsive with 'List feature'

I used 'List'-

And in mobile it looks like that: 

What I can do to fix that???
Please any help???

Comments

  • Hi,

    there is not enough space on mobile to float the image with text and that's why this is why it looks like that. What you can do is display those elements block on mobile and this could be achieved with the following custom css:
    @media only screen and (max-width: 767px) {
        .list_item .list_left { float: none !important; }
        .list_item .list_right { margin-left: 0 !important; }
    }
  • Thanks a lot for your help!!!!
    Now it's work perfect
Sign In or Register to comment.