Sorry, but this is way over our technical support. There is a lot of things to do - firstly I would suggest to use for elements with span3 class - box-sizing: border-box:
http://css-tricks.com/box-sizing/Now after removing margins you could use width: 33% to create even spread.
Now with media queries you would need to create few "steps" and code different sizing of elements into them:
http://css-tricks.com/css-media-queries/for example:
- Code: Select all
.myElement {
width: 50%;
}
@media (max-width: 600px) {
.myElement {
width: 100%;
}
}
will cause elements wyth myElement class to be 50% width for browsers with width above 600px and 100% width wit 600px and under.
Sadly - that is that much I can help - using this knowledge and transforming it to working site is up to you.