jquery - Overriding bootstrap data-toggle="dropdown" width -
boostrap data-toggle="dropdown"
have natively width of 991px
. need fix 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, point "cls" class sections , not others
refer below link
Comments
Post a Comment