


Your real problem might be different – you seem to be looking at the part of style sheets that constitute a browser style sheet. If you don’t set fonts at all, browsers defaults will be used. If there is a continuous chain of elements (in the sense of parent-child relationships) from the root element to the current element, all with font-family set to inherit or not set at all in any style sheet (which also causes inheritance), then the font is the browser default. Now you can type in the CSS for your fonts in the box. This will open a screen where you can type in CSS. Open the Customizer and click on Additional CSS.
#INHERIT FONT FOR WORDPRESS MANUAL#
This means that the browser’s default font family is used. If you want to change the font style for a specific element, you can do this by adding manual CSS to the Customizer. The font-family property is special in the sense that the initial value is not fixed in the specification but defined to be browser-dependent. The initial value is defined for each property in CSS specifications. You would have to create a child theme to avoid the loss. The change can be made in the styles.css file, but subsequent updates to the theme will remove the modification. When you want to change the font globally throughout the site, you will need to edit the CSS that applies to that theme. For the root element (in HTML documents, for the html element) there is no parent element by definition, the value used is the initial value of the property. WordPress Templates have a default font applied to them. The inherit value, when used, means that the value of the property is set to the value of the same property of the parent element.
