I have one form in which multiple divs are available.But for mobile view i want to remove pull-right class.
So is there any way to achieve it ?
I have removed detail level content but as we can see that one class pull-right which is create an issue for me.
Please let me know if any other information i missed to give here.
<form action="http://localhost:8085/email/email_client_area/" accept-charset="utf-8" id="commission_form" method="POST" name="commission_form">
<div class="col-md-6">
<div class="col-md-12 main-box">
<header class='main-box-header clearfix'>
<h2><b>FILTER</b></h2>
</header>
</div>
</div>
<div class="col-md-6 pull-right custom_class_1">
<div class="col-md-12 main-box">
<header class='main-box-header clearfix'>
<h2><b>EMAIL INFORMATION</b></h2>
</header>
<div class="main-box-body clearfix">
<div class="col-md-12"></div>
<center>
<div class="col-md-12 margin-t-20 margin-b-20">
<button name="action" type="submit" value="save" id="submit" class="btn btn-success" >Search</button>
</div>
</center>
</div>
</div>
</div>
</div>
</form>
</div>