Saturday, January 30, 2016

Hiding the Tiles Button

/*hiding the arrow buttons */
Insert the code in script editor to hide the arrow buttons of tiles

<style>

.ms-promlink-header{
display:none;
}
</style

SharePoint Tiles in Rows and Columns

Using script editor we can use below code to display tiles in 3 Rows and Columns


<style>
.ms-promlink-body {
      width: 480px;
}
</style>

/*The Below CSS shows the Tiles in 2 Rows
<style>
.ms-promlink-body {
      width420px;
}

</style>