You can configure / override anything - if, for example, you upload YOUR css file AFTER the boot file, your settings will override it. Whatever you dream of:
p { font-size 18px; }
etc.
I highly recommend digging into the source code: https://github.com/twbs/bootstrap/blob/master/dist/css/bootstrap.css
html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.428571429; color: #333333; background-color: #ffffff; }
UPDATE: To clarify βNo,β you do not need to do anything. There seems to be another problem. The associated source code has changed since the original date of the response ... as of February 2015 is as follows:
html { font-size: 10px; } body { font-size: 14px; }
Assuming we set up our project correctly ( bower install bootstrap pretty simple) ... trying to echo text outside the body should result in 10px text, inside the body should be 14px.
If you do not see the 14-point text inside the body, then something else may come on it. Then I will examine Chrome (for example) to confirm where the font size came from.
I would like to add that, in my opinion, it is useful to understand how these values ββthat we see in this / dist / css file are obtained from smaller variables ... the default values ββshould work out of the box, but you have a simple control above everything, including the size of the main text: see http://getbootstrap.com/css/#less-variables .
Ryan
source share