Boostrap data-toggle="dropdown"
have natively a width of 991px
. I need to fix this with for maximum 767px
.
My code is:
<a href="/Samohyl/peugeot" class="dropdown-toggle" data-toggle="dropdown">Peugeot</a>
Boostrap data-toggle="dropdown"
have natively a width of 991px
. I need to fix this with for maximum 767px
.
My code is:
<a href="/Samohyl/peugeot" class="dropdown-toggle" data-toggle="dropdown">Peugeot</a>
try below option.
<style type="text/css">
.cls .dropdown-toggle{
width:yourwidth px;
}
</style>
<div class="cls">
<a href="/Samohyl/peugeot" class="dropdown-toggle" data-toggle="dropdown">Peugeot</a>
</div>
this way, only point to "cls" class sections and not others
refer to the below link