문제

v4.master와 함께 사용자 정의 CSS를 추가하고 싶습니다. 그러나 실제 마스터 페이지 자체를 편집하지 않으려면

아이디어는 Wiki 페이지에 사용자 정의 CSS를로드하는 것입니다.

우리는 그것을하는 방법이 있습니까?

도움이 되었습니까?

해결책

In addition to Eric's post

You can use also use ScriptLink together with Custom action and inject your CSS into the ScriptLink section of masterpage - All without editing a master page (see the sample below)

   <CustomAction 
        Id="MyCustomCSSWiki" 
        Location="ScriptLink" 
        ScriptBlock="document.write('&lt;link rel=&quot;stylesheet&quot; After=&quot;Corev15.css&quot;  type=&quot;text/css&quot; href=&quot;../_layouts/14/MyCustom/Styles/BrandingWiki.css&quot;&gt;&lt;/' + 'link&gt;');" 
        Sequence="202" />

다른 팁

If you don't want to modify the master page, then the alternative is to go into Site Settings and click on Master Page in the look and feel section and in there add your custom css file into the Alternate CSS URL section.

If you just want to add custom CSS to a specific page, then add a Content Editor web part and point that to your CSS file.

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