Skip to main content

Posts

Showing posts with the label sharepoint designer

Apply Custom Master Page To Site using Power Shell

function ApplyMasterPageToSearchSite([string] $siteURL, [string] $SiteName) {         $subsiteurl = $siteURL + "/" + $SiteName + "/default.aspx"         Enable-SPFeature -identity "94c94ca6-b32f-4da9-a9e3-1f3d343d7ecb" -url $subsiteurl         Start-SPAssignment -Global         $site = Get-SPSite $siteURL         Write-Host "Get the Site" -foregroundcolor green         $topWeb = Get-SPWeb $site.Url         Write-Host "Update Master Page to search" -foregroundcolor green         $site | Get-SPWeb -limit all | ForEach-Object { $_.MasterUrl = "/_catalogs/masterpage/LMSSearchMaster.master";$_.Update() }         Write-Host "Master Page assigned" -foregroundcolor green         Stop-SPAssignment -G...

Real World Branding with SharePoint 2010 Publishing Sites

Introduction to Real World Branding with SharePoint 2010 Publishing Sites Gathering Design Requirements for a SharePoint Publishing Site Planning for SharePoint Branding Tasks Creating Realistic Design Comps for SharePoint Site Designs Creating the Adventure Works Travel HTML Creating .css files for Adventure Works Travel Testing SharePoint Webpage Design in Multiple Browsers Creating the Brand in SharePoint Adding .css and Image Files to SharePoint Building the Master Page with HTML Building Out .css Rules for the SharePoint Site Design Creating a Custom Page Layout Editing a Page Layout with SharePoint Designer Packaging and Deploying SharePoint Branding     Download code Introduction to Real World Branding with SharePoint 2010 Publishing Sites Microsoft SharePoint Server 2010 publishing sites use Publishing Features to provide capabilities to create engaging web content management (WCM) sites. Frequently used as Internet-facing websites, th...