An Adobe Commerce developer is customizing buttons for a custom theme that inherits Magento/blank theme and needs to override the default values. Where would the default values for the buttons be located?
To implement a custom font specifically for emails, the developer needs to do the following steps:
Add the custom font file to the web/fonts directory of the custom theme.
Use the @import font function with the url of the custom font from the theme in the /Vendor/Theme/web/css/source/_extend.less file. This will import the custom font and make it available for use in other LESS files. For example:
@import font('custom-font', '@{baseDir}fonts/custom-font.ttf', 'truetype');
Add in the styles to target the elements that require being changed in the /Vendor/Theme/web/css/source/_email.less file. This file is used to define the styles for email templates. The developer can use the .lib-font-face() mixin to apply the custom font to specific selectors. For example:
.lib-font-face( @family-name: @custom-font, @font-path: '@{baseDir}fonts/custom-font', @font-weight: normal, @font-style: normal );
h1 { .lib-font-face( @family-name: @custom-font, @font-path: '@{baseDir}fonts/custom-font', @font-weight: normal, @font-style: normal ); }
The /vendor/Theme/web/css/source/_typography.less file is not suitable for implementing a custom font for emails, as it is used for defining global typography styles for web pages. The <head></head> tag is not used for adding fonts in email templates, as it is not supported by most email clients. Reference: [Custom fonts], [Email templates overview]
Daren
4 months agoKayleigh
4 months agoGussie
4 months agoTitus
5 months agoGracia
5 months agoBeula
5 months agoRhea
5 months agoEloisa
5 months agoDerick
6 months agoMitsue
6 months agoJanet
6 months agoTeri
6 months agoKelvin
6 months agoMelinda
6 months agoAshlee
6 months agoDeangelo
6 months agoTammara
6 months agoGoldie
10 months agoLouvenia
10 months agoJerrod
10 months agoSuzan
10 months agoHalina
9 months agoMeghan
9 months agoAliza
9 months agoMalcolm
9 months agoWilson
9 months agoFlorinda
9 months agoWynell
10 months agoTarra
10 months agoHyman
10 months agoCarlee
10 months agoGregoria
10 months agoMarylin
11 months agoEzekiel
10 months agoAmber
10 months agoRene
10 months agoCorrina
11 months agoDaren
12 months agoEleonora
12 months ago