Changing font for all pages

Hi,

Is there a way how to change the text color to all pages automatically without editing each page separately?

You can do this easily via CSS…

body {
  color: red;
}

Results in this…

image

Of course, there are some components that contain text that will not be affected by this particular rule change (ex. navbars, links, button text, etc…) but those can also be changed globally by changing the appropriate CSS rules for their classes.

If you’re not familiar with CSS, I highly recommend you become familiar, as it allows you to get the most out of Bootstrap Studio.