문제

SharePoint 2013을 사용하고 있습니다. 사이트 설정에서 기본 로고를 변경했습니다.이제 SharePoint가 내 로고 크기를 조정 해제하고 작아야합니다.나는 그것을 더 크게 만들고 싶다.더 커질 수 있도록해야 할 일은 무엇입니까?이 CSS를 내 사용자 정의 CSS에 추가하지만 도움이되지 않았습니다.로고가 더 큽니다. 그러나 왼쪽 빠른 실행 메뉴와 첫 번째 맨 위 웹 파트 영역이 내 로고를 무시합니다.

.ms-siteicon-img {

max-width: none !important;

max-height: none !important;

width: 308px !important;

height: 154px !important;

}


 .ms-siteicon-a {

max-width: none !important;

max-height: none !important;

width: 308px !important;

height: 154px !important;


}
.

여기에 이미지 설명

도움이 되었습니까?

해결책

사이트 사이트의 이미지의 CSS를 변경하면 다른 CSS도 몇 가지를 조정해야합니다.

div#s4-titlerow {
    height: auto;
    overflow: hidden;
    padding: 0;
}

div#siteIcon {
    height: 154px;
    line-height: 154px;
    min-width: 308px;
}

div#titleAreaBox {
    margin: 5px 20px;
}

a.ms-siteicon-a {
    display: inline-block;
    max-height: 154px;
    max-width: 308px;
}

a.ms-siteicon-a > img {
    height: 154px;
    width: 308px;
}
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top