I'm very noob in bootstrap. I tried my first bootstrap page and then downloaded a theme from bootswatch.com and replaced the bootstrap.css with the Cerulean theme. When I change the font in the bootstrap.css it stay with the old theme\[code\]@import url(//fonts.googleapis.com/css?family=Caesar+Dressing);\[/code\]but its not reflecting when I refresh my page.\[code\] <!DOCTYPE html><head><script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script><script type="text/javascript" src="http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js"></script><link href="http://stackoverflow.com/questions/15693793/css/bootstrap.css" rel="stylesheet"><title>Twitter Bootstrap Tutorial - A responsive layout tutorial</title><style type='text/css'></style><script>$(function() { // Setup drop down menu $('.dropdown-toggle').dropdown(); // Fix input element click problem $('.dropdown input, .dropdown label').click(function(e) { e.stopPropagation(); });});</script></head><body><div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"><!-- Collapsable nav bar --> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <!-- Your site name for the upper left corner of the site --> <a class="brand">GUVI</a> <!-- Start of the nav bar content --> <div class="nav-collapse"><!-- Other nav bar content --> <!-- The drop down menu --> <ul class="nav pull-right"> <li><a href="http://stackoverflow.com/users/sign_up">Sign Up</a></li> <li class="divider-vertical"></li> <li class="dropdown"> <a class="dropdown-toggle" href="http://stackoverflow.com/questions/15693793/#" data-toggle="dropdown">Sign In <strong class="caret"></strong></a> <div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px;"> <form action="[YOUR ACTION]" method="post" accept-charset="UTF-8"> <input id="user_username" style="margin-bottom: 15px;" type="text" name="user[username]" size="30" /> <input id="user_password" style="margin-bottom: 15px;" type="password" name="user[password]" size="30" /> <input id="user_remember_me" style="float: left; margin-right: 10px;" type="checkbox" name="user[remember_me]" value="http://stackoverflow.com/questions/15693793/1" /> <label class="string optional" for="user_remember_me"> Remember me</label> <input class="btn btn-primary" style="clear: left; width: 100%; height: 32px; font-size: 13px;" type="submit" name="commit" value="http://stackoverflow.com/questions/15693793/Sign In" /></form> </div> </li> </ul> </div> </div> </div></div></body></html>\[/code\]