|
沙發
發表于 2023-5-8 17:58:29
|
只看Ta
這個模板建議使用方形logo,保持風格一致。
如果需要使用其他樣式,可以按以下步驟改下代碼:
1. 編輯template/domi_mi/static下的theme.css
2. 修改554行
- .BoardIcon_boardIcon,
- .nv_logo img,
- .fl_icn,
- .fl_icn_g,
- .fl_g img,
- .fl_icn img,
- .fl_g svg,
- .fl_icn svg {
- /* -webkit-mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg); */
- mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg);
- -webkit-mask-repeat: round;
- mask-repeat: round;
- border: unset;
- }
復制代碼
為- .BoardIcon_boardIcon,
- .fl_icn,
- .fl_icn_g,
- .fl_g img,
- .fl_icn img,
- .fl_g svg,
- .fl_icn svg {
- /* -webkit-mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg); */
- mask-image: url(/template/domi_mi/static/img/board-icon-mask.svg);
- -webkit-mask-repeat: round;
- mask-repeat: round;
- border: unset;
- }
復制代碼
3.修改寬高,332行
- .nv_logo img {
- max-width: 84px;
- height: 36px;
- object-fit: cover;
- }
復制代碼
【可能后期行數會變化,搜索對應的關鍵詞即可】 |
|