Styling 0:28 video
How to change the font family in Stylesheets
Learn how to change the font family in Stylesheets with SpreadsheetWeb. Follow focused steps, practical examples, and implementation guidance to complete…
To change the font family in Stylesheets;
- Open Designer Interface,
- Go to ‘Stylesheet’ module.
- Add a new stylesheet.
- Add the following CSS declaration:
font-family: "Font Name", sans-serif; - Replace “Font Name” with the name of the font you want to use. Make sure to enclose the font name in quotation marks.
- Save the stylesheet by clicking on the “Save” button.
body {
font-family: Garamond, sans-serif;
}