I\' am using Bootstrap 3, In the mobile view I would like to apply some CSS to fix up some bugs on mobile view. I have looked to documentations and Google it. I\' am can\'t
Just use the appropriate media queries in your CSS, eg
@media (max-width: 767px) {
/* CSS goes here */
}
Bootstrap defines the following widths
See http://css-tricks.com/css-media-queries/ for some more information on media queries.