在 SharePoint Foundation 2010 母版页中将功能区选项卡的位置更改为右侧

发布于 2024-12-17 20:36:16 字数 202 浏览 5 评论 0原文

我想将 SharePoint Foundation 2010 母版页中功能区选项卡的位置更改为右侧。 但我无法使用 SharePoint Designer 2010 在“v4.master”中找到与选项卡相关的任何控件(例如:Ribbon.Tab)。 类似于下图。

图片

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春如此纠结 2024-12-24 20:36:16

页面详细介绍了所需的操作。

以下是为更好地实施而制定的基本控制措施的细分
了解这一切是如何运作的:

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”>

应用此处中的信息,以下内容似乎可以解决问题(添加它到主页)

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

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文