I need to modify bootstrap.css
to fit my website. I feel it\'s better to create a separate custom.css
file instead of modifying bootstrap.css
See this example:
$(document).ready(function(){
$(".dropdown-toggle").css({
"color": "#212529",
"background-color": "#ffc107",
"border-color": "#ffc107"
});
$(".multiselect-selected-text").text('Select Tags');
});