Jump to content

How to change default family font


Musher Kazarjan

Recommended Posts

Hello everyone, 

Can you please tell me how can I change the main default family font of my prestashop website? So that the police will already be the settled as "Bahnschrift" and I will not have to always go and change that in the source HTML code, when I'm creating new texts. 

Thank you in advance. 

Edited by Musher Kazarjan (see edit history)
Link to comment
Share on other sites

body {
  font-family: "Poppins", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #888888;
  line-height: 24px; }


Theme.css in your theme folder/assets/css
Also remember some sub-classes override it, so unless you add !important to the property line, you will have to find all of the occurrences.
TO do so, right click on an element and choose "inspect" on chrome. It will tell you where the css responsible for the text is located

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...