0
votes

I want to change the position of Ribbon Tabs to the right in SharePoint foundation 2010 Master Page. But i am not able to find any Controls related to Tabs(like:Ribbon.Tab) in "v4.master" using SharePoint Designer 2010. similar like below image.

image

1

1 Answers

1
votes

This page details the operation needed.

Here is a breakdown of the essential controls laid out to better understand how it all works:

1. <SPRibbon PlaceholderElementId=”RibbonContainer”>
2. <SharePoint:SPRibbonPeripheralContent Location=”TabRowLeft”>
3. <SharePoint:SiteActions>
4. <asp:ContentPlaceHolder id=”PlaceHolderGlobalNavigation”> <SharePoint:PopoutMenu ID=”GlobalBreadCrumbNavPopout”> <SharePoint:PageStateActionButton>
5. <SharePoint:SPRibbonPeripheralContent Location=”TabRowRight”>

Applying information from here, the following seems to do the trick (add it to the master page)

<style>
.ms-cui-topBar2{
/* [ReplaceColor(themeColor:"Dark2-Lighter")] */
 border-bottom:1px solid #cad2db;
height:43px;
float:right;
}
</style>