Ami designer en herbe, Microsoft dispose d'un programme vous permettant de créer et de modifier les fichiers spColor qui constitue la partie thème de SharePoint.
Grâce à cette outil il est possible de générer automatiquement le fichier permettant de customizer votre portail en quelques clics.
Il ne reste plus qu'ensuite à importer le fichier grâce à SharePoint Designer dans le dossier
/_catalogs/theme/15 de votre site SharePoint Online ou SharePoint 2013
Et à modifier le thème de votre site via la page de modification d'apparence.
http://www.microsoft.com/en-us/download/details.aspx?id=38182
Du SharePoint, du silverlight, pas mal de C#, un peu de powershell et surtout du Microsoft
Affichage des articles dont le libellé est Sharepoint Design. Afficher tous les articles
Affichage des articles dont le libellé est Sharepoint Design. Afficher tous les articles
lundi 23 juin 2014
mercredi 10 juillet 2013
SharePoint 2013 , change branding text content
Purpose
You can easily change the SharePoint branding text that appear in the left corner of you site thanks to this powershell code
PowerShell Snippet
Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue
$webApp = Get-SPWebApplication http://serveurSP
$webApp.SuiteBarBrandingElementHtml = "Larry's Microsoft Technologies Blog"
$webApp.Update()
Following this example you can also change the background color using CSS :
/* Modification couleur de la barre d'application */
/*Modification de la couleur du texte de la barre d'application */
#suiteBarLeft
{
background-color: rgb(229,226,221);
color: rgb(0,0,0);
font-weight:bold;
padding-left:5px;
}
/*Modification de la couleur du texte de la barre d'application */
#suiteBarLeft
{
background-color: rgb(229,226,221);
color: rgb(0,0,0);
font-weight:bold;
padding-left:5px;
}
Inscription à :
Articles
(
Atom
)