Do you think it could be usefull to assign bootstrap size to fields?
I imagine it to work as such it will give the user of easy profile to chose whether he can display fields next to each other.
@media(min-width:600px){
.username-group{width:48%;float:left;}
.firstname-group{width:48%;float:right}
}
see result in screenshot @media(min-width:600px){
.username-group{width:48%;float:left;}
.firstname-group{width:48%;float:right;clear:none !important}
}
@media(min-width:600px){
.email1-group{width:48%;float:left;}
.email2-group{width:48%;float:right;clear:none !important}
.password1-group{width:48%;float:left;}
.password2-group{width:48%;float:right;clear:none !important}
}
@media(min-width:600px){
.field1-group,.field2-group,.field3-group {
float:left;
clear:none !important;
width:30%;
margin-right:5%;
}
.field3-group {
margin-right:0px;
}
}
@media(min-width:600px){
.field1-group,.field2-group,.field3-group,.field4-group{
float:left;
clear:none !important;
width:22%;
margin-right:4%;
}
.field4-group {
margin-right:0px;
}
}