'Can't Be Previewed' in all Assets to change product page font

'Can't Be Previewed' in all Assets to change product page font

Jillybean
Visitor
1 0 0

Trying to change font to make all the same for product descriptions (for some reason different items have different fonts) and assets in coding are all numbered now for description and says 'Can't Be Previewed' when clicked on. 

Reply 1 (1)

NomtechSolution
Astronaut
1245 113 153
  1. In the left-hand sidebar, click on the "Assets" folder to expand it.
  2. Look for the CSS file that controls the styling of your product descriptions. This file is usually named something like "theme.css" or "styles.css". If you're not sure which file to edit, you can check the existing stylesheets or consult your theme's documentation.
  3. Open the CSS file and search for the styles that target the product descriptions. Look for properties like font-family, font-size, or font-weight.
  4. Modify the CSS rules to set the desired font for your product descriptions. You can specify a specific font name, font stack, or even use web-safe fonts. For example:

 

.product-description {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: normal;
}
​