Skip to content

How to make page title center using Set-PnPPage on SharePoint Online? #960

Answered by LeonArmston
in8AnkKu asked this question in Q&A
Discussion options

You must be logged in to vote

Hi

The below will allow you to check and then change the page header on a modern page to be centre aligned.

#Get Page Object
$page = Get-PnPPage -Identity "Centre.aspx"
$page.PageHeader #Check Text Alignment Property for existing value

#Update Page Header Text Alignment to Center
$page.PageHeader.TextAlignment =  "Center"
$page.Save()
Invoke-PnPQuery

Thanks

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@in8AnkKu
Comment options

Answer selected by in8AnkKu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants