我有一个徽标&菜单,在整个网站的页面中心显示为here。
但只在一页中,它显示了一个左侧的位。我想在页面的中心显示该菜单,如here所示。
.ms-topmenu .ms-label {
font-size: 15px;
text-transform: none;
color: #000000;
padding: 14.75px 15px;
}
.ms-megamenu .anchor_mbmenu {
background: rgb(7, 70, 102);
padding: 8px 0;
display: none;
}
.ms-megamenu .text-right {
text-align: right;
}
答案 0 :(得分:2)
进入styles.css并更改
startActivityForResult()
到
startActivityForResult()
你已经完成了。
答案 1 :(得分:1)
页面在body标签中有一个额外的类“cms-customized-mobile-cases”,导致标题的宽度覆盖到1200px,这导致菜单向左移动,从body标签中删除此类你会得到所需的菜单。
以下是造成问题的类:
.cms-customized-mobile-cases #header {
margin: 0 auto;
width: 1200px;
}
答案 2 :(得分:1)
尝试在css下面应用这个可能会解决问题。
html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space */
background: transparent; /* optional: just make scrollbar invisible */
}
/* optional: show position indicator in red */
::-webkit-scrollbar-thumb {
background: #FF0000;
}