Skip to content

Instantly share code, notes, and snippets.

@kyledurand
Created July 9, 2014 21:36
Show Gist options
  • Save kyledurand/87898afb7c09288e97c4 to your computer and use it in GitHub Desktop.
Save kyledurand/87898afb7c09288e97c4 to your computer and use it in GitHub Desktop.
Responsive Fix for Envy
First unminify bootstrap.min.css
Add this css to line 551 of bootstrap.min.css
/* added by kyle @ shopify */
.col-lg-6{
width:50%;
float:left;
}
.col-lg-3{
width:25%;
float:left;
}
@media(max-width:600px) {
.col-lg-6{
width:100%;
float:none;
}
.col-lg-3{
width:100%;
float:none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment