I have made a site www.carwahi.com using my own HTML & CSS coding but somehow I can't be able to fix the image gallery on my page when viewing in mobile. In mobile view, the images appears to be half the original picture covering half the page.
I am providing my code below although I can't be able to ft in the whole coding in this query area.
I have put the image sizes in pixels in my html code. If you want to check just visit my site & resize the browser to see the problem.
<style>
@media screen and (max-width: 700px){
.column.middlehome img{max-width: 100%;}
.column.middlehome{max-width: 100%; padding-right: 0; margin-right: 0;}
.column.sidehome{width: 0%;}
.gallery2 img{max-width: 100%; padding-right: 0; margin-right: 0; padding-left: 8%; margin-left: 0;}
.gallery2{max-width: 100%; margin-right: 0%;}
.containerhero{max-width: 100%;}
}
</style>

