How to make a column in Bootstrap 3.3.2 to be fixed width on large screen (min-width: 768px) but also stacks on small screen (max-width: 767px)?
Did some research and found this solution works half the puzzle, but how to further make it stacks on small screen like a responsive column is doing?
Thus far I tried:
@media (max-width: 767px) {
.col-fixed-160 {
width:100%;
}
.col-fixed-240 {
width:100%;
}
}
But it doesn't work.