Magento – Magento 2.1.4. Change font

fontsmagento2

I am trying to import a font (have Luma theme installed) with no success. Browsed similar threads about this, made changes in typography and variable files, but still can't get rid of the default 'Open sans' font.

Here's my css file:

@font-face {
font-family: 'Chalet';
font-style: normal;
font-weight: 400;
src: url('C:xampp/htdocs/testshop/vendor/magento/theme-frontend-  luma/web/fonts/LEGO-Chalet-60-Tab-Regular.eot'); /* IE9 Compat Modes */
src: local('Chalet'), local('Chalet'),
url('../fonts/LEGO-Chalet-60-Tab-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */

   url('../fonts/LEGO-Chalet-60-Tab-Regular.woff') format('woff'), /* Modern Browsers */
   url('C:xampp/htdocs/testshop/vendor/magento/theme-frontend-  luma/web/fonts/LEGO-Chalet-60-Tab-Regular.ttf') format('truetype'), /* Safari, Android, iOS */

}  (tried also full local path)

Any ideas?

Best Answer

Magento Docs http://devdocs.magento.com/guides/v2.0/frontend-dev-guide/css-topics/using-fonts.html

Looks like the path is not correct should be

app/design/frontend/Vendor/theme/web/fonts

Related Topic