I've searched the internet for an answer to making a horizontal scrolling site (ie: http://nquinones.4ormat.com/fashion-1 ) responsive with no success.
HTML:
<div id="horizontal">
<div class="picture">
<img src="pic01.jpg" />
</div>
<div class="picture">
<img src="pic02.jpg" />
</div>
<div class="picture">
<img src="pic03.jpg" />
</div>
</div>
CSS:
#horizontal {
width: 2000px;
}
.picture {
float: left;
}
img {
height: auto;
max-width: 100%;
}
I'm really lost on this. Any help would be appreciated.
Thanks