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
bootstrap.css
custom.css
Use jquery css instead of css . . . jquery have priority than bootstrap css...
e.g
$(document).ready(function(){ $(".mnu").css({"color" : "#CCFF00" , "font-size": "16px" , "text-decoration" : "overline"}); ); instead of .mnu { font-family:myfnt; font-size:20px; color:#006699; }