提问人:4m Media 提问时间:11/9/2023 最后编辑:4m Media 更新时间:11/9/2023 访问量:43
Shopware 6 / 将本地字体添加到子商店
Shopware 6 / Adding Local fonts to Subshop
问:
谁能帮忙?
我需要帮助将本地字体设置为 Subshop。
本地字体在主商店上运行良好,但在子商店中效果不佳。
我执行了这些步骤来为 Subshop 实现本地字体。(主店使用相同的步骤)
- 字体位置:\shopware\custom\plugins\UniTheme\src\Resources\public\assets\fonts\
- 在文件 - override.scss : $my-asset-path: '#{$sw-asset-theme-url}/bundles/unitheme/assets' !default;
- 在文件 - Base.scss 中添加这些字体(这些字体将添加到字体位置 - 第 1 步)
@font-face {
font-family: 'DIN-Regular';
src: url('#{$my-asset-path}/fonts/DIN-Regular.otf');
src: local('DIN-Regular'), local('DIN-Regular'),
url('#{$my-asset-path}/fonts/DIN-Regular.otf') format('opentype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Hind-Regular';
src: url('#{$my-asset-path}/fonts/Hind-Regular.eot');
src: local('Roboto Medium'), local('Roboto-Medium'),
url('#{$my-asset-path}/fonts/Hind-Regular.eot?#iefix') format('embedded-opentype'),
url('#{$my-asset-path}/fonts/Hind-Regular.woff2') format('woff2'),
url('#{$my-asset-path}/fonts/Hind-Regular.woff') format('woff'),
url('#{$my-asset-path}/fonts/Hind-Regular.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'FrankRuhlLibre-Regular';
src: url('#{$my-asset-path}/fonts/FrankRuhlLibre-Regular.ttf');
src: local('FrankRuhlLibre-Regular'), local('DIN-Regular'),
url('#{$my-asset-path}/fonts/FrankRuhlLibre-Regular.ttf') format('opentype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: SkemaProOmni;
src: url('#{$my-asset-path}/fonts/SkemaProOmni-Medium.ttf') format("truetype");
}
- ./console assets:安装
- ./console 主题:编译
我忘了什么吗?
非常感谢您的帮助。 最好的问候彼得。
我已经尝试了相同的步骤,就像其他商店一样/但这是第一个子商店
答: 暂无答案
评论