How to add custom font on odoo v11
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
3
답글
7853
화면
How to add custom font on odoo v11
This is the solution:
I added this into my css:
.test {
@font-face {
font-family: 'myfont';
src: url('/theme_test/static/src/fonts/230163575-DINNextLTArabic-Regular.eot');
src: url('/theme_test/static/src/fonts/230163575-DINNextLTArabic-Regular.eot?#iefix') format('embedded-opentype'),
url('/theme_test/static/src/fonts/230163575-DINNextLTArabic-Regular.woff') format('woff'),
url('/theme_test/static/src/fonts/230163575-DINNextLTArabic-Regular.ttf') format('truetype'),
url('/theme_test/static/src/fontss/230163575-DINNextLTArabic-Regular.svg#DIN Next LT Arabic') format('svg');
font-weight: normal;
font-style: normal;
}
li {
font-family: 'myfont';
}
}
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
2
7월 22
|
9102 | ||
|
1
3월 22
|
4978 | ||
|
1
6월 21
|
2384 | ||
|
2
2월 21
|
299 | ||
|
5
9월 20
|
14266 |
where you want ? into odoo report or in odoo framework(frontend) ?
in odoo framework(frontend)