I need to make modifications to an HTML page that is using bootstrap.css. The specific line I am focusing on is
<input type="submit" class="btn btn-primary btn-block btn-md" value="Create">
This points to
.btn {
display: inline-block;
*display: inline;
padding: 4px 12px;
margin-bottom: 0;
*margin-left: .3em;
font-size: 24px;
line-height: 20px;
..
}
within the bootstrap.css file. Despite adjusting the font-size
, I do not see any changes reflected in the browser after refreshing. What could be causing this issue?