I need my website to be mobile responsive and I want the mobile view to have specific changes. Simply adding cd-xs-12
or even cd-sm-12
is not achieving the desired outcome.
https://i.sstatic.net/0GU2h.jpg
This is the current code I have:
.mobile-select {height:50px;padding-top:15px;padding-left:60px;padding-right:20px}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="row breadcrumb bg-white border-bottom paddl30">
<div class="col-md-6">
<ul>
<li><a href="">Devices</a></li>
<li> > </li>
<li>Screen Analytics</li>
</ul>
</div>
</div>
<div class="row mobile-select border-bottom">
<div class="col-md-6">
<ul class="device-menu bg-white" id="selMenu">
The solution is to add <br class="visible-xs">
wherever necessary.